diff --git a/docs/NEWS b/docs/NEWS index 2a3fb005..18239cd0 100644 --- a/docs/NEWS +++ b/docs/NEWS @@ -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) ------------------------------------------------------------------------ diff --git a/sql/db.sql b/sql/db.sql index a27d1a8d..3668c78a 100644 --- a/sql/db.sql +++ b/sql/db.sql @@ -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);