Skip to content

Commit

Permalink
Merge pull request #14041 from transcom/hdt-614-int
Browse files Browse the repository at this point in the history
MMHDT 614 Integration
  • Loading branch information
cameroncaci authored Oct 29, 2024
2 parents 95ecf12 + e73ce87 commit 6988a4a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions migrations/app/migrations_manifest.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1025,3 +1025,4 @@
20241009210749_create_view_v_locations.up.sql
20241011201326_changes_for_actual_expense_reimbursement_field.up.sql
20241024114748_create_gbloc_aors.up.sql
20241029144404_hdt-614-adjust-accomack-county.up.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
-- Set temp timeout due to large file modification
-- Time is 5 minutes in milliseconds
SET statement_timeout = 300000;
SET lock_timeout = 300000;
SET idle_in_transaction_session_timeout = 300000;

-- Adjust postal code to GBLOC per MMHDT 582
update postal_code_to_gblocs pctg SET gbloc = 'BGNC' FROM us_post_region_cities usprc where pctg.postal_code = usprc.uspr_zip_id and usprc.usprc_county_nm = 'ACCOMACK'

0 comments on commit 6988a4a

Please sign in to comment.