-
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 'integrationTesting' into b19765-int-20240508-fe-change-…
…text-auth-receipt-total
- Loading branch information
Showing
2 changed files
with
20 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
19 changes: 19 additions & 0 deletions
19
migrations/app/schema/20240506214039_add_submitted_columns_to_ppm_document_tables.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,19 @@ | ||
ALTER TABLE weight_tickets | ||
ADD COLUMN IF NOT EXISTS submitted_empty_weight INT4 DEFAULT NULL, | ||
ADD COLUMN IF NOT EXISTS submitted_full_weight INT4 DEFAULT NULL; | ||
|
||
COMMENT ON COLUMN weight_tickets.submitted_empty_weight IS 'Stores the customer submitted empty_weight.'; | ||
COMMENT ON COLUMN weight_tickets.submitted_full_weight IS 'Stores the customer submitted full_weight.'; | ||
|
||
ALTER TABLE progear_weight_tickets ADD COLUMN IF NOT EXISTS submitted_weight INT4 DEFAULT NULL; | ||
|
||
COMMENT ON COLUMN progear_weight_tickets.submitted_weight IS 'Stores the customer submitted weight.'; | ||
|
||
ALTER TABLE moving_expenses | ||
ADD COLUMN IF NOT EXISTS submitted_amount INT4 DEFAULT NULL, | ||
ADD COLUMN IF NOT EXISTS submitted_sit_start_date DATE DEFAULT NULL, | ||
ADD COLUMN IF NOT EXISTS submitted_sit_end_date DATE DEFAULT NULL; | ||
|
||
COMMENT ON COLUMN moving_expenses.submitted_amount IS 'Stores the customer submitted amount.'; | ||
COMMENT ON COLUMN moving_expenses.submitted_sit_start_date IS 'Stores the customer submitted sit_start_date.'; | ||
COMMENT ON COLUMN moving_expenses.submitted_sit_end_date IS 'Stores the customer submitted sit_end_date.'; |