for new installations, also make entryproperties a LONGTEXT.

If that goes out well, we'll put that into the upgrader.
This commit is contained in:
Garvin Hicking 2010-01-27 10:35:29 +00:00
parent a490fd53ec
commit 4521ed1ba7
2 changed files with 6 additions and 1 deletions

View File

@ -31,6 +31,11 @@ Version 1.6 ()
* Added event hook backend_sendcomment for sending comments and
being able to chang via plugin API (onli)
Version 1.5.2 (January 25th, 2010)
------------------------------------------------------------------------
* Fixed SQL upgrade path for SQLite.
Version 1.5.1 (December 21st, 2009)
------------------------------------------------------------------------

View File

@ -257,7 +257,7 @@ CREATE UNIQUE INDEX entryid_idx ON {PREFIX}entrycat (entryid, categoryid);
create table {PREFIX}entryproperties (
entryid int(11) not null,
property varchar(255) not null,
value text
value {TEXT}
) {UTF_8};
CREATE INDEX entrypropid_idx ON {PREFIX}entryproperties (entryid);