diff options
-rw-r--r-- | modules/contact/contact.install | 4 |
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), |