Index: database/database.mysql
===================================================================
RCS file: /cvs/drupal/drupal/database/database.mysql,v
retrieving revision 1.230
diff -u -p -r1.230 database.mysql
--- database/database.mysql	14 Mar 2006 14:04:13 -0000	1.230
+++ database/database.mysql	18 Mar 2006 20:05:41 -0000
@@ -215,8 +215,8 @@ CREATE TABLE comments (
 CREATE TABLE contact (
   cid int(10) 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(3) NOT NULL default '0',
   selected tinyint(1) NOT NULL default '0',
   PRIMARY KEY (cid),
@@ -478,9 +479,9 @@ CREATE TABLE node_revisions (
   vid int(10) unsigned NOT NULL,
   uid int(10) NOT NULL default '0',
   title varchar(128) NOT NULL default '',
-  body longtext NOT NULL default '',
-  teaser longtext NOT NULL default '',
-  log longtext NOT NULL default '',
+  body longtext NOT NULL,
+  teaser longtext NOT NULL,
+  log longtext NOT NULL,
   timestamp int(11) NOT NULL default '0',
   format int(4) NOT NULL default '0',
   PRIMARY KEY  (vid),
Index: database/updates.inc
===================================================================
RCS file: /cvs/drupal/drupal/database/updates.inc,v
retrieving revision 1.218
diff -u -p -r1.218 updates.inc
--- database/updates.inc	12 Mar 2006 22:25:00 -0000	1.218
+++ database/updates.inc	18 Mar 2006 20:05:41 -0000
@@ -508,8 +508,8 @@ function system_update_133() {
   if ($GLOBALS['db_type'] == 'mysql') {
     $ret[] = update_sql("CREATE TABLE {contact} (
       subject varchar(255) NOT NULL default '',
-      recipients longtext NOT NULL default '',
-      reply longtext NOT NULL default ''
+      recipients longtext NOT NULL,
+      reply longtext NOT NULL
       )");
     $ret[] = update_sql("ALTER TABLE {users} ADD login int(11) NOT NULL default '0'");
   }
