-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ravindranath Sandeep (INST-IOT/ESW-Imb) <Sandeep.Ravindranath@bosch-si.com>
- Loading branch information
1 parent
110cf1f
commit 42334c8
Showing
5 changed files
with
9 additions
and
3 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
...sitory-jpa/src/main/resources/db/migration/DB2/V1_12_12__add_action_external_id___DB2.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 @@ | ||
ALTER TABLE sp_action ADD column external_ref VARCHAR(256); | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...pository-jpa/src/main/resources/db/migration/H2/V1_12_12__add_action_external_id___H2.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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
ALTER TABLE sp_action ADD column external_ref VARCHAR(128); | ||
ALTER TABLE sp_action ADD column external_ref VARCHAR(256); | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...ry-jpa/src/main/resources/db/migration/MYSQL/V1_12_12__add_action_external_id___MYSQL.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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
ALTER TABLE sp_action ADD column external_ref VARCHAR(128); | ||
ALTER TABLE sp_action ADD column external_ref VARCHAR(256); | ||
|
||
|
3 changes: 3 additions & 0 deletions
3
.../main/resources/db/migration/SQL_SERVER/V1_12_12__add_action_external_id___SQL_SERVER.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 @@ | ||
ALTER TABLE sp_action ADD column external_ref VARCHAR(256); | ||
|
||
|