diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-09-27 19:56:51 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-09-27 19:56:51 +0000 |
commit | 3525d9df097a047f84e538c2a76ce2c60dbf0807 (patch) | |
tree | f356c527df99fb51072b2435530660b083f4691f /database/updates.inc | |
parent | 5850e5b6dd856e30248ec7efc416a5029ef82026 (diff) | |
download | brdo-3525d9df097a047f84e538c2a76ce2c60dbf0807.tar.gz brdo-3525d9df097a047f84e538c2a76ce2c60dbf0807.tar.bz2 |
- Patch #11094 by Allen Chandler and Adrian: fixed PostgreSQL related SQL problem in aggregator module.
Diffstat (limited to 'database/updates.inc')
-rw-r--r-- | database/updates.inc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/database/updates.inc b/database/updates.inc index 8aecc62c9..90a9db221 100644 --- a/database/updates.inc +++ b/database/updates.inc @@ -1072,6 +1072,11 @@ 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"); + } else { $ret[] = update_sql("ALTER TABLE {bundle} RENAME TO {aggregator_category}"); |