+2009-09-02 Ingo Renner <ingo@typo3.org>
+
+ * Follow-up to #11438: Add a registry to t3lib - Limited the key field size to 128 chars to fit the UNIQUE key
+
2009-09-02 Rupert Germann <rupi@gmx.li>
* Added feature #9657: Performance improvement: Instantiate time tracker as null object if not really required
CREATE TABLE sys_registry (
uid int(11) unsigned NOT NULL auto_increment,
entry_namespace varchar(128) DEFAULT '' NOT NULL,
- entry_key varchar(255) DEFAULT '' NOT NULL,
+ entry_key varchar(128) DEFAULT '' NOT NULL,
entry_value blob,
PRIMARY KEY (uid),
UNIQUE KEY entry_identifier (entry_namespace,entry_key)