diff --git a/migrations/app/migrations_manifest.txt b/migrations/app/migrations_manifest.txt index af992206e0d..3de5b16249a 100644 --- a/migrations/app/migrations_manifest.txt +++ b/migrations/app/migrations_manifest.txt @@ -893,4 +893,5 @@ 20240124155759_20240124-homesafeconnect-cert.up.sql 20240129153006_20240129-homesafeconnect-cert.up.sql 20240201174442_20240201_homesafe_prd_cert.up.sql +20240201201343_update_duty_location_names.up.sql 20240206173201_update_shipment_address_update_table_sit_and_distance_columns.up.sql diff --git a/migrations/app/schema/20240201201343_update_duty_location_names.up.sql b/migrations/app/schema/20240201201343_update_duty_location_names.up.sql new file mode 100644 index 00000000000..8cbbb9e5537 --- /dev/null +++ b/migrations/app/schema/20240201201343_update_duty_location_names.up.sql @@ -0,0 +1,7 @@ +-- update the duty_location_names values to properly associate with the value on the duty_locations table +UPDATE duty_location_names SET name = 'Ft Novosel' WHERE name = 'Ft Rucker'; +UPDATE duty_location_names SET name = 'Ft Gregg-Adams' WHERE name = 'Ft Lee'; +UPDATE duty_location_names SET name = 'Ft Cavazos' WHERE name = 'Ft Hood'; +UPDATE duty_location_names SET name = 'Ft Liberty' WHERE name = 'Ft Bragg'; +UPDATE duty_location_names SET name = 'Ft Johnson' WHERE name = 'Ft Polk'; +UPDATE duty_location_names SET name = 'Ft Eisenhower' WHERE name = 'Ft Gordon';