summaryrefslogtreecommitdiff
path: root/modules/contact
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/contact
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/contact')
-rw-r--r--modules/contact/contact.schema2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/contact/contact.schema b/modules/contact/contact.schema
index f77f6a27c..709559dba 100644
--- a/modules/contact/contact.schema
+++ b/modules/contact/contact.schema
@@ -6,7 +6,7 @@ function contact_schema() {
'fields' => array(
'cid' => array('type' => 'serial', 'unsigned' => TRUE, 'not null' => TRUE),
'category' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => ''),
- 'recipients' => array('type' => 'text', 'not null' => TRUE, 'size' => 'big'),
+ 'recipients' => array('type' => 'text', 'not null' => TRUE, 'size' => 'medium'),
'reply' => array('type' => 'text', 'not null' => TRUE, 'size' => 'big'),
'weight' => array('type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'tiny'),
'selected' => array('type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'tiny')