diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-10-06 18:09:34 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-10-06 18:09:34 +0000 |
commit | 67925ce081c30b7c1ec6ff591c1546013f032cb9 (patch) | |
tree | 40816a6ea079662f758fc3512e73159a2ae9ca92 | |
parent | 905d530abd5f221e01f27870c6a53cc15a27c9ea (diff) | |
download | brdo-67925ce081c30b7c1ec6ff591c1546013f032cb9.tar.gz brdo-67925ce081c30b7c1ec6ff591c1546013f032cb9.tar.bz2 |
- Patch #11232 by David: fixed bug in upgrade path of the aggregator module.
-rw-r--r-- | database/updates.inc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/database/updates.inc b/database/updates.inc index 90a9db221..82940d9ed 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 { |