Index: modules/system/system.install
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.install,v
retrieving revision 1.127
diff -u -r1.127 system.install
--- modules/system/system.install	3 Jul 2007 19:42:14 -0000	1.127
+++ modules/system/system.install	3 Jul 2007 20:26:16 -0000
@@ -3433,8 +3433,8 @@
  */
 function system_update_6025() {
   $ret = array();
-  db_update_field($ret, 'node', 'title');
-  db_update_field($ret, 'node_revisions', 'title');
+  db_change_field($ret, 'node', 'title', 'title', array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => ''));
+  db_change_field($ret, 'node_revisions', 'title', 'title', array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => ''));
   return $ret;
 }
 
