-
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 #14220 from transcom/MAIN-B-21412-B-21413-Prime-si…
…m-create-international-crate MAIN - B-21412 & B-21413 Prime sim - create international crate
- Loading branch information
Showing
65 changed files
with
4,311 additions
and
77 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
13 changes: 13 additions & 0 deletions
13
migrations/app/schema/20241111203514_add_external_crate_and_remove_icrtsa.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 @@ | ||
-- Add external_crate to mto_service_items | ||
ALTER TABLE mto_service_items ADD COLUMN IF NOT EXISTS external_crate bool NULL; | ||
COMMENT ON COLUMN mto_service_items.external_crate IS 'Boolean value indicating whether the international crate is externally crated.'; | ||
|
||
-- removing 'International crating - standalone' (ICRTSA) from the tables | ||
delete from service_params sp | ||
where service_id in (select id from re_services where code in ('ICRTSA')); | ||
|
||
delete from re_intl_accessorial_prices reiap | ||
where service_id in (select id from re_services where code in ('ICRTSA')); | ||
|
||
delete from re_services rs | ||
where code in ('ICRTSA'); |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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.