-
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 #13886 from transcom/B-20654-M25-INT
B 20654 m25 int
- Loading branch information
Showing
30 changed files
with
2,643 additions
and
258 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
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
13 changes: 13 additions & 0 deletions
13
migrations/app/schema/20241007162933_addPaymentRequestEdiFiles.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,13 @@ | ||
CREATE TABLE | ||
IF NOT EXISTS payment_request_edi_files ( | ||
id UUID PRIMARY KEY, | ||
payment_request_number TEXT NOT NULL, | ||
edi_string TEXT NOT NULL, | ||
file_name TEXT NOT NULL, | ||
created_at TIMESTAMP | ||
WITH | ||
TIME ZONE DEFAULT CURRENT_TIMESTAMP, | ||
updated_at TIMESTAMP | ||
WITH | ||
TIME ZONE DEFAULT CURRENT_TIMESTAMP | ||
); |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
58 changes: 58 additions & 0 deletions
58
...gen/adminapi/adminoperations/payment_request_syncada_file/payment_request_syncada_file.go
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.