sessioninfo to mediumblob 33/17733/1
authorKevin McKiou <km097d@att.com>
Mon, 9 Oct 2017 21:11:57 +0000 (16:11 -0500)
committerKevin McKiou <km097d@att.com>
Mon, 9 Oct 2017 21:19:51 +0000 (16:19 -0500)
The sessioninfo is currently defined as a blob which is
too small in practice.  This changes the definition to
a mediumblob.

Issue-ID: POLICY-301
Change-Id: I482cf08a4c4a34c4e1b7e07876984e5e3b8b1c63
Signed-off-by: Kevin McKiou <km097d@att.com>
feature-session-persistence/src/main/feature/db/sessionpersistence/sql/18020-sessionpersistence.upgrade.sql

index 5d4993f..6cb0299 100644 (file)
@@ -33,7 +33,7 @@ CREATE TABLE if not exists sessionpersistence.SESSIONINFO
 (
 ID BIGINT NOT NULL AUTO_INCREMENT, 
 LASTMODIFICATIONDATE TIMESTAMP, 
-RULESBYTEARRAY BLOB, 
+RULESBYTEARRAY MEDIUMBLOB, 
 STARTDATE TIMESTAMP default current_timestamp, 
 OPTLOCK INTEGER, 
 PRIMARY KEY (ID)