Index: database/database.mysql
===================================================================
RCS file: /cvs/drupal/drupal/database/database.mysql,v
retrieving revision 1.196
diff -u -r1.196 database.mysql
--- database/database.mysql	12 Sep 2005 18:26:59 -0000	1.196
+++ database/database.mysql	14 Sep 2005 13:58:54 -0000
@@ -128,8 +128,7 @@
   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,
-  PRIMARY KEY (module, delta)
+  pages text NOT NULL
 ) TYPE=MyISAM;
 
 --
Index: database/database.pgsql
===================================================================
RCS file: /cvs/drupal/drupal/database/database.pgsql,v
retrieving revision 1.135
diff -u -r1.135 database.pgsql
--- database/database.pgsql	12 Sep 2005 18:26:59 -0000	1.135
+++ database/database.pgsql	14 Sep 2005 13:59:05 -0000
@@ -123,8 +123,7 @@
   custom smallint NOT NULL default '0',
   throttle smallint NOT NULL default '0',
   visibility smallint NOT NULL default '0',
-  pages text NOT NULL default '',
-  PRIMARY KEY (module, detla)
+  pages text NOT NULL default ''
 );
 
 --
Index: database/updates.inc
===================================================================
RCS file: /cvs/drupal/drupal/database/updates.inc,v
retrieving revision 1.133
diff -u -r1.133 updates.inc
--- database/updates.inc	12 Sep 2005 20:13:04 -0000	1.133
+++ database/updates.inc	14 Sep 2005 14:34:15 -0000
@@ -66,8 +66,7 @@
   "2005-08-08" => "update_144",
   "2005-08-15" => "update_145",
   "2005-08-25" => "update_146",
-  "2005-09-07" => "update_147",
-  "2005-09-12" => "update_148"
+  "2005-09-07" => "update_147"
 );
 
 function update_110() {
@@ -812,13 +811,6 @@
   return $ret;
 }
 
-function update_148() {
-  $ret = array();
-
-  $ret[] = update_sql('ALTER TABLE {blocks} ADD PRIMARY KEY (module, delta)');
-
-  return $ret;
-}
 
 function update_sql($sql) {
   $edit = $_POST["edit"];
