Index: database.mysql
===================================================================
RCS file: /cvs/drupal/drupal/database/database.mysql,v
retrieving revision 1.166
diff -u -F^f -r1.166 database.mysql
--- database.mysql	19 Jan 2005 16:22:52 -0000	1.166
+++ database.mysql	24 Jan 2005 01:31:35 -0000
@@ -126,7 +126,8 @@
   custom tinyint(2) DEFAULT '0' NOT NULL,
   throttle tinyint(1) DEFAULT '0' NOT NULL,
   visibility tinyint(1) DEFAULT '0' NOT NULL,
-  pages text NOT NULL
+  pages text NOT NULL,
+  type varchar(16) DEFAULT '' NOT NULL
 ) TYPE=MyISAM;
 
 --
Index: database.pgsql
===================================================================
RCS file: /cvs/drupal/drupal/database/database.pgsql,v
retrieving revision 1.102
diff -u -F^f -r1.102 database.pgsql
--- database.pgsql	19 Jan 2005 16:22:52 -0000	1.102
+++ database.pgsql	24 Jan 2005 01:30:34 -0000
@@ -55,7 +55,8 @@
   region smallint NOT NULL default '0',
   path varchar(255) NOT NULL default '',
   custom smallint NOT NULL default '0',
-  throttle smallint NOT NULL default '0'
+  throttle smallint NOT NULL default '0',
+  type varchar(16) NOT NULL defualt ''
 );
 
 --
Index: updates.inc
===================================================================
RCS file: /cvs/drupal/drupal/database/updates.inc,v
retrieving revision 1.83
diff -u -F^f -r1.83 updates.inc
--- updates.inc	23 Jan 2005 15:32:32 -0000	1.83
+++ updates.inc	24 Jan 2005 01:28:36 -0000
@@ -94,7 +94,8 @@
   "2005-01-07" => "update_115",
   "2005-01-14" => "update_116",
   "2005-01-18" => "update_117",
-  "2005-01-19" => "update_118"
+  "2005-01-19" => "update_118",
+  "2005-01-21" => "update_119"
 );
 
 function update_32() {
@@ -2108,6 +2109,14 @@ function update_118() {
   }
   $ret[] = update_sql("ALTER TABLE {vocabulary} DROP nodes");
   return $ret;
+}
+
+function update_119() {
+
+  $ret = array();
+  $ret[] = update_sql("ALTER TABLE {blocks} ADD type varchar(16)");
+  return $ret;
+
 }
 
 function update_sql($sql) {

***** CVS exited normally with code 1 *****