summaryrefslogtreecommitdiff
path: root/modules/contact
diff options
context:
space:
mode:
authorNeil Drumm <drumm@3064.no-reply.drupal.org>2007-01-02 05:30:29 +0000
committerNeil Drumm <drumm@3064.no-reply.drupal.org>2007-01-02 05:30:29 +0000
commitf58b4e1a5ae418aa77cc4a995d2a0db32b103402 (patch)
tree09027f03a5f227126e331949cccfde55a02b0736 /modules/contact
parentdfd86399c07794db856ad3ad4007792057d6c689 (diff)
downloadbrdo-f58b4e1a5ae418aa77cc4a995d2a0db32b103402.tar.gz
brdo-f58b4e1a5ae418aa77cc4a995d2a0db32b103402.tar.bz2
#106266 by webchick. Blob and text columns can't have default values in MySQL.
Diffstat (limited to 'modules/contact')
-rw-r--r--modules/contact/contact.install4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/contact/contact.install b/modules/contact/contact.install
index 0e3679d44..b24c4ca51 100644
--- a/modules/contact/contact.install
+++ b/modules/contact/contact.install
@@ -11,8 +11,8 @@ function contact_install() {
db_query("CREATE TABLE {contact} (
cid int unsigned NOT NULL auto_increment,
category varchar(255) NOT NULL default '',
- recipients longtext NOT NULL default '',
- reply longtext NOT NULL default '',
+ recipients longtext NOT NULL,
+ reply longtext NOT NULL,
weight tinyint NOT NULL default '0',
selected tinyint NOT NULL default '0',
PRIMARY KEY (cid),