summaryrefslogtreecommitdiff
path: root/modules/aggregator
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-06-15 07:15:25 +0000
committerDries Buytaert <dries@buytaert.net>2007-06-15 07:15:25 +0000
commitae0392b2eb956263c35fb04b695f4974dcca2787 (patch)
treefeaee181acca6a6ad7b93e119e5348cc499314e9 /modules/aggregator
parent0d5e968823f3f0932e02cc637971c504ad872e8f (diff)
downloadbrdo-ae0392b2eb956263c35fb04b695f4974dcca2787.tar.gz
brdo-ae0392b2eb956263c35fb04b695f4974dcca2787.tar.bz2
- Patch #147947 by hswong3i: some files shouldn't defined as text:big for Oracle compatibility.
Diffstat (limited to 'modules/aggregator')
-rw-r--r--modules/aggregator/aggregator.schema2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/aggregator/aggregator.schema b/modules/aggregator/aggregator.schema
index ed0c146e9..edbd8c27a 100644
--- a/modules/aggregator/aggregator.schema
+++ b/modules/aggregator/aggregator.schema
@@ -38,7 +38,7 @@ function aggregator_schema() {
'checked' => array('type' => 'int', 'not null' => TRUE, 'default' => 0),
'link' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => ''),
'description' => array('type' => 'text', 'not null' => TRUE, 'size' => 'big'),
- 'image' => array('type' => 'text', 'not null' => TRUE, 'size' => 'big'),
+ 'image' => array('type' => 'text', 'not null' => TRUE, 'size' => 'medium'),
'etag' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => ''),
'modified' => array('type' => 'int', 'not null' => TRUE, 'default' => 0),
'block' => array('type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'tiny')