Index: database.mysql =================================================================== RCS file: /cvs/drupal/drupal/database/database.mysql,v retrieving revision 1.168 diff -u -F^f -r1.168 database.mysql --- database.mysql 28 Jan 2005 15:47:03 -0000 1.168 +++ database.mysql 11 Feb 2005 14:43:47 -0000 @@ -127,7 +127,7 @@ throttle tinyint(1) DEFAULT '0' NOT NULL, visibility tinyint(1) DEFAULT '0' NOT NULL, pages text NOT NULL, - types text NOT NULL + nodes text NOT NULL ) TYPE=MyISAM; -- Index: database.pgsql =================================================================== RCS file: /cvs/drupal/drupal/database/database.pgsql,v retrieving revision 1.103 diff -u -F^f -r1.103 database.pgsql --- database.pgsql 27 Jan 2005 19:41:00 -0000 1.103 +++ database.pgsql 11 Feb 2005 14:43:29 -0000 @@ -57,7 +57,7 @@ custom smallint NOT NULL default '0', throttle smallint NOT NULL default '0', pages text default '', - types text default '' + nodes text default '' ); -- Index: updates.inc =================================================================== RCS file: /cvs/drupal/drupal/database/updates.inc,v retrieving revision 1.90 diff -u -F^f -r1.90 updates.inc --- updates.inc 28 Jan 2005 15:47:03 -0000 1.90 +++ updates.inc 11 Feb 2005 14:46:08 -0000 @@ -99,7 +99,8 @@ "2005-01-25" => "update_120", "2005-01-26" => "update_121", "2005-01-27" => "update_122", - "2005-01-28" => "update_123" + "2005-01-28" => "update_123", + "2005-02-11" => "update_124" ); function update_32() { @@ -2190,6 +2191,14 @@ function update_123() { } return $ret; +} + +function update_124() { + + $ret = array(); + $ret[] = update_sql("ALTER TABLE {blocks} CHANGE types nodes TEXT NOT NULL"); + return $ret; + } function update_sql($sql) { ***** CVS exited normally with code 1 *****