-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into MAIN-B-21506-Prime-Port-Update-Failure
- Loading branch information
Showing
7 changed files
with
13,703 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3,197 changes: 3,197 additions & 0 deletions
3,197
migrations/app/schema/20241217180136_add_AK_zips_to_zip3_distances.up.sql
Large diffs are not rendered by default.
Oops, something went wrong.
5,460 changes: 5,460 additions & 0 deletions
5,460
migrations/app/schema/20241220171035_add_additional_AK_zips_to_zip3_distances.up.sql
Large diffs are not rendered by default.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
migrations/app/schema/20241230190638_remove_AK_zips_from_zip3.up.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DELETE FROM zip3_distances WHERE to_zip3 IN ('995','996','997','998','999'); |
5,005 changes: 5,005 additions & 0 deletions
5,005
migrations/app/schema/20241230190647_add_missing_AK_zips_to_zip3_distances.up.sql
Large diffs are not rendered by default.
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
migrations/app/secure/20241217163231_update_duty_locations_bad_zips.up.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
-- Local test migration. | ||
-- This will be run on development environments. | ||
-- It should mirror what you intend to apply on loadtest/demo/exp/stg/prd | ||
-- DO NOT include any sensitive data. |
30 changes: 30 additions & 0 deletions
30
migrations/app/secure/20241218201833_add_PPPO_BASE_ELIZABETH.up.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
-- Local test migration. | ||
-- This will be run on development environments. | ||
-- It should mirror what you intend to apply on loadtest/demo/exp/stg/prd | ||
-- DO NOT include any sensitive data. | ||
INSERT INTO addresses | ||
(id, street_address_1, street_address_2, city, state, postal_code, created_at, updated_at, street_address_3, county, is_oconus, country_id, us_post_region_cities_id) | ||
VALUES('6f321986-86ff-4e16-9ec3-5fc561deaf9e', '1664 Weeksville Rd', '', 'Elizabeth City', 'NC', '27909', now(), now(), '', 'PASQUOTANK', false, '791899e6-cd77-46f2-981b-176ecb8d7098', 'd8541f35-2c8b-4bee-8fca-cb67582ce34e'); | ||
|
||
|
||
INSERT INTO transportation_offices | ||
(id, shipping_office_id, "name", address_id, latitude, longitude, hours, services, note, created_at, updated_at, gbloc, provides_ppm_closeout) | ||
VALUES('4cd300fb-0a45-478a-8f55-5aba4c5921b3',null, 'PPPO Base Elizabeth City','6f321986-86ff-4e16-9ec3-5fc561deaf9e',36.302952, -76.245804, '', '', '', now(), now(), 'BGNC'::character varying, false); | ||
|
||
|
||
INSERT INTO office_phone_lines | ||
(id, transportation_office_id, "number", "label", is_dsn_number, "type", created_at, updated_at) | ||
VALUES('f8661e7a-24c4-467a-9f55-9004ffac472e', '4cd300fb-0a45-478a-8f55-5aba4c5921b3', '(252)335-6362', '', false, 'voice'::text, now(), now()); | ||
|
||
insert into office_emails | ||
(id, transportation_office_id, email, created_at, updated_at) | ||
values | ||
('6a46978f-9ea2-4535-8f80-dae8e6a15595', '4cd300fb-0a45-478a-8f55-5aba4c5921b3', '[email protected]', now(), now()); | ||
|
||
INSERT INTO duty_locations | ||
(id, "name", affiliation, address_id, created_at, updated_at, transportation_office_id, provides_services_counseling) | ||
VALUES('4b6c3be8-961d-44c6-b0f7-bd6c205cc3f6', 'PPPO Base Elizabeth City', 'USCG', '6f321986-86ff-4e16-9ec3-5fc561deaf9e', now(), now(), '4cd300fb-0a45-478a-8f55-5aba4c5921b3', true); | ||
|
||
INSERT INTO duty_location_names | ||
(id, "name", duty_location_id, created_at, updated_at) | ||
VALUES('837a16cd-5dbc-48af-a987-7ec238e7b186', 'PPPO Base Elizabeth City', '4b6c3be8-961d-44c6-b0f7-bd6c205cc3f6', now(), now()); |