-
Notifications
You must be signed in to change notification settings - Fork 16
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 #303 from catenax-ng/fix/persistence_gate_pool_ent…
…ity_changes Fix - Removal of unused fields on Pool and Gate Entities and addition of Delivery Service Qualifier
- Loading branch information
Showing
11 changed files
with
45 additions
and
86 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
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
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
14 changes: 14 additions & 0 deletions
14
bpdm-gate/src/main/resources/db/migration/V4_0_0_3__removal_entity_fields.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,14 @@ | ||
ALTER TABLE logistic_addresses | ||
DROP COLUMN IF EXISTS alt_district_l1, | ||
DROP COLUMN IF EXISTS alt_district_l2, | ||
DROP COLUMN IF EXISTS alt_admin_area_l2, | ||
DROP COLUMN IF EXISTS alt_admin_area_l3, | ||
DROP COLUMN IF EXISTS alt_admin_area_l4, | ||
DROP COLUMN IF EXISTS alt_street_name, | ||
DROP COLUMN IF EXISTS alt_street_number, | ||
DROP COLUMN IF EXISTS alt_street_milestone, | ||
DROP COLUMN IF EXISTS alt_street_direction; | ||
|
||
ALTER TABLE logistic_addresses | ||
ADD COLUMN IF NOT EXISTS alt_delivery_service_qualifier VARCHAR(255); | ||
|
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
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
bpdm-pool/src/main/resources/db/migration/V4_0_0_4__removal_entity_fields.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 @@ | ||
ALTER TABLE logistic_addresses | ||
DROP COLUMN IF EXISTS alt_district_l1, | ||
DROP COLUMN IF EXISTS alt_district_l2, | ||
DROP COLUMN IF EXISTS alt_admin_area_l2, | ||
DROP COLUMN IF EXISTS alt_admin_area_l3, | ||
DROP COLUMN IF EXISTS alt_admin_area_l4, | ||
DROP COLUMN IF EXISTS alt_street_name, | ||
DROP COLUMN IF EXISTS alt_street_number, | ||
DROP COLUMN IF EXISTS alt_street_milestone, | ||
DROP COLUMN IF EXISTS alt_street_direction; | ||
|
||
ALTER TABLE logistic_addresses | ||
ADD COLUMN IF NOT EXISTS alt_delivery_service_qualifier VARCHAR(255); |