-
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 #14973 from transcom/B-22814-EnvVariableTests
change to env variables for bypass if needed; unset aws env; fix whitespace; change needs to include now passing/req'd tests; change some images to use harbor proxy vs docker to avoid rate limit
- Loading branch information
Showing
2 changed files
with
84 additions
and
24 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
6 changes: 3 additions & 3 deletions
6
migrations/app/schema/20250227160358_B-21966_add_data_to_office_users.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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
-- Adds rejectedOn date to pre-existing rejected office users. | ||
UPDATE office_users | ||
SET rejected_on = updated_at | ||
WHERE | ||
UPDATE office_users | ||
SET rejected_on = updated_at | ||
WHERE | ||
status ='REJECTED'::public."office_user_status" AND rejected_on is null; |