- Patch #126229 by yched: fixed the upgrade path.

6.x
Dries Buytaert 2007-07-04 15:34:50 +00:00
parent 71c6fd0ecf
commit 4b3efeffca
1 changed files with 2 additions and 2 deletions

View File

@ -3433,8 +3433,8 @@ function system_update_6024() {
*/
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;
}