-
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.
fix(gate):fixed the persistence of legalForm
- Loading branch information
1 parent
7c45439
commit 5722104
Showing
2 changed files
with
5 additions
and
2 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
3 changes: 3 additions & 0 deletions
3
bpdm-gate/src/main/resources/db/migration/V4_0_0_6__make_legal_form_id_optional.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,3 @@ | ||
-- Description: Make 'legal_form_id' column optional in the 'legal_entities' table | ||
-- Alter the 'legal_form_id' column to allow NULL values | ||
ALTER TABLE legal_entities ALTER COLUMN legal_form_id DROP NOT NULL; |