From 4521ed1ba7e687545bb0ae1505b902ecde9fdaa0 Mon Sep 17 00:00:00 2001 From: Garvin Hicking Date: Wed, 27 Jan 2010 10:35:29 +0000 Subject: [PATCH] for new installations, also make entryproperties a LONGTEXT. If that goes out well, we'll put that into the upgrader. --- docs/NEWS | 5 +++++ sql/db.sql | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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);