From f58b4e1a5ae418aa77cc4a995d2a0db32b103402 Mon Sep 17 00:00:00 2001 From: Neil Drumm Date: Tue, 2 Jan 2007 05:30:29 +0000 Subject: [PATCH] #106266 by webchick. Blob and text columns can't have default values in MySQL. --- modules/contact/contact.install | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/contact/contact.install b/modules/contact/contact.install index 0e3679d44e7..b24c4ca519e 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),