[Erp5-report] r15200 - /erp5/trunk/products/CMFActivity/skins/activity/

nobody at svn.erp5.org nobody at svn.erp5.org
Thu Jul 12 13:30:33 CEST 2007


Author: seb
Date: Thu Jul 12 13:30:33 2007
New Revision: 15200

URL: http://svn.erp5.org?rev=15200&view=rev
Log:
increase blob size from BLOB to LONGBLOB :
if L is the size of the string,
BLOB = L+2 octets, with L < 2^16
LONGBLOG = L+4 octets, with L < 2^32

Modified:
    erp5/trunk/products/CMFActivity/skins/activity/SQLDict_createMessageTable.zsql

Modified: erp5/trunk/products/CMFActivity/skins/activity/SQLDict_createMessageTable.zsql
URL: http://svn.erp5.org/erp5/trunk/products/CMFActivity/skins/activity/SQLDict_createMessageTable.zsql?rev=15200&r1=15199&r2=15200&view=diff
==============================================================================
--- erp5/trunk/products/CMFActivity/skins/activity/SQLDict_createMessageTable.zsql (original)
+++ erp5/trunk/products/CMFActivity/skins/activity/SQLDict_createMessageTable.zsql Thu Jul 12 13:30:33 2007
@@ -22,7 +22,7 @@
   `tag` VARCHAR(255) NOT NULL,
   `retry` TINYINT UNSIGNED NOT NULL DEFAULT 0,
   `order_validation_text` VARCHAR(255) NOT NULL,
-  `message` BLOB NOT NULL,
+  `message` LONGBLOB NOT NULL,
   PRIMARY KEY (`uid`),
   KEY (`path`),
   KEY (`method_id`),




More information about the Erp5-report mailing list