Skip to content

Commit

Permalink
use 256 chars for externalRef
Browse files Browse the repository at this point in the history
Signed-off-by: Ravindranath Sandeep (INST-IOT/ESW-Imb) <Sandeep.Ravindranath@bosch-si.com>
  • Loading branch information
SandeepAsSmy4kor committed Jun 25, 2019
1 parent 110cf1f commit 42334c8
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public interface Action extends TenantAwareBaseEntity {
/**
* Maximum length of external reference.
*/
int EXTERNAL_REF_MAX_LENGTH = 128;
int EXTERNAL_REF_MAX_LENGTH = 256;

/**
* @return the distributionSet
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
ALTER TABLE sp_action ADD column external_ref VARCHAR(256);


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);


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);


Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
ALTER TABLE sp_action ADD column external_ref VARCHAR(256);


0 comments on commit 42334c8

Please sign in to comment.