Index: updates.inc
===================================================================
RCS file: /cvs/drupal/drupal/database/updates.inc,v
retrieving revision 1.218
diff -u -Ffunction -r1.218 updates.inc
--- updates.inc	12 Mar 2006 22:25:00 -0000	1.218
+++ updates.inc	13 Mar 2006 22:33:05 -0000
@@ -64,8 +64,7 @@ function system_update_110() {
     /*
     ** Blocks
     */
-    // Postgres can only drop columns since 7.4
-    #$ret[] = update_sql('ALTER TABLE {blocks} DROP path');
+    $ret[] = update_sql('ALTER TABLE {blocks} DROP path');
 
     $ret[] = update_sql('ALTER TABLE {blocks} ADD visibility smallint');
     $ret[] = update_sql("ALTER TABLE {blocks} ALTER COLUMN visibility set default 0");
@@ -196,12 +195,9 @@ function system_update_114() {
     }
   }
 
-  if ($GLOBALS['db_type'] == 'mysql') {
-    // Postgres only supports dropping of columns since 7.4
-    $ret[] = update_sql("ALTER TABLE {node} DROP votes");
-    $ret[] = update_sql("ALTER TABLE {node} DROP score");
-    $ret[] = update_sql("ALTER TABLE {node} DROP users");
-  }
+  $ret[] = update_sql("ALTER TABLE {node} DROP votes");
+  $ret[] = update_sql("ALTER TABLE {node} DROP score");
+  $ret[] = update_sql("ALTER TABLE {node} DROP users");
 
   return $ret;
 }
@@ -248,9 +244,9 @@ function system_update_118() {
       db_query("INSERT INTO {vocabulary_node_types} (vid, type) VALUES (%d, '%s')", $vid, $type);
     }
   }
-  if ($GLOBALS['db_type'] == 'mysql') {
-    $ret[] = update_sql("ALTER TABLE {vocabulary} DROP nodes");
-  }
+
+  $ret[] = update_sql("ALTER TABLE {vocabulary} DROP nodes");
+
   return $ret;
 }
 
