-
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 pull request #11963 from transcom/B-18325
B-18325 update duty_location_names table to get rid of old base names
- Loading branch information
Showing
2 changed files
with
8 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
7 changes: 7 additions & 0 deletions
7
migrations/app/schema/20240201201343_update_duty_location_names.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,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'; |