From 67925ce081c30b7c1ec6ff591c1546013f032cb9 Mon Sep 17 00:00:00 2001 From: Dries Buytaert <dries@buytaert.net> Date: Wed, 6 Oct 2004 18:09:34 +0000 Subject: [PATCH] - Patch #11232 by David: fixed bug in upgrade path of the aggregator module. --- database/updates.inc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/database/updates.inc b/database/updates.inc index 90a9db22104f..82940d9ed981 100644 --- a/database/updates.inc +++ b/database/updates.inc @@ -1072,10 +1072,10 @@ function update_85() { cid int(10) NOT NULL, PRIMARY KEY (iid, cid) )"); - $ret[] = update_sql("ALTER TABLE {aggregator_category} ALTER COLUMN description DROP NOT NULL"); - $ret[] = update_sql("ALTER TABLE {aggregator_item} ALTER COLUMN description DROP NOT NULL"); - $ret[] = update_sql("ALTER TABLE {aggregator_feed} ALTER COLUMN description DROP NOT NULL"); - $ret[] = update_sql("ALTER TABLE {aggregator_feed} ALTER COLUMN image DROP NOT NULL"); + $ret[] = update_sql("ALTER TABLE {aggregator_category} MODIFY description longtext NULL"); + $ret[] = update_sql("ALTER TABLE {aggregator_item} MODIFY description longtext NULL"); + $ret[] = update_sql("ALTER TABLE {aggregator_feed} MODIFY description longtext NULL"); + $ret[] = update_sql("ALTER TABLE {aggregator_feed} MODIFY image longtext NULL"); } else { -- GitLab