-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
changed the serviceDefinition.code size from character varying(64) to…
… character varying(256)
- Loading branch information
1 parent
09d65c4
commit 24c971f
Showing
4 changed files
with
19 additions
and
10 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
9 changes: 9 additions & 0 deletions
9
...est/src/main/resources/db/migration/main/V20241115143930__servicedefinition_alter_ddl.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,9 @@ | ||
-- Migration script to alter the length of 'code' column in both tables to 256 | ||
|
||
-- Update eg_service_definition table | ||
ALTER TABLE eg_service_definition | ||
ALTER COLUMN code TYPE character varying(256); | ||
|
||
-- Update eg_service_attribute_definition table | ||
ALTER TABLE eg_service_attribute_definition | ||
ALTER COLUMN code TYPE character varying(256); |
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