diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-09-26 14:19:00 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-09-26 14:19:00 +0000 |
commit | 2da09a6597c2c48da6475c795b4643bfa9fd18c2 (patch) | |
tree | af70f07a75c04fe9d61755347a1feb1b06a6499c /modules/aggregator/aggregator.install | |
parent | 878bb6162c5c87a1e2de0517d9e70bba1055f5fe (diff) | |
download | brdo-2da09a6597c2c48da6475c795b4643bfa9fd18c2.tar.gz brdo-2da09a6597c2c48da6475c795b4643bfa9fd18c2.tar.bz2 |
- Patch #85490 by havran: made an image and description optional. PostgreSQL fix.
Diffstat (limited to 'modules/aggregator/aggregator.install')
-rw-r--r-- | modules/aggregator/aggregator.install | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/aggregator/aggregator.install b/modules/aggregator/aggregator.install index 6c3220e4a..9cc59cc2d 100644 --- a/modules/aggregator/aggregator.install +++ b/modules/aggregator/aggregator.install @@ -89,8 +89,8 @@ function aggregator_install() { refresh int NOT NULL default '0', checked int NOT NULL default '0', link varchar(255) NOT NULL default '', - description text NOT NULL, - image text NOT NULL, + description text NOT NULL default '', + image text NOT NULL default '', etag varchar(255) NOT NULL default '', modified int NOT NULL default '0', block smallint NOT NULL default '0', |