? drupal-document-schema-164983-35.patch
? drupal-document-schema-164983-37.patch
? files
? filter_titles_2.patch
? gpl_notice_4.patch
? gpl_notice_5.patch
? improve-indices-164532-20.patch
? trigger-index-0.patch
? modules/taxonomy/taxonomy.install
? sites/all/modules
? sites/default/pg-settings.php
? sites/default/settings.php
Index: modules/profile/profile.schema
===================================================================
RCS file: /cvs/drupal/drupal/modules/profile/profile.schema,v
retrieving revision 1.2
diff -u -p -r1.2 profile.schema
--- modules/profile/profile.schema	9 Aug 2007 11:05:40 -0000	1.2
+++ modules/profile/profile.schema	26 Sep 2007 02:08:21 -0000
@@ -29,9 +29,9 @@ function profile_schema() {
       'uid'   => array('type' => 'int', 'unsigned' => TRUE, 'not null' => FALSE, 'default' => 0),
       'value' => array('type' => 'text', 'not null' => FALSE)
     ),
+    'primary key' => array('uid', 'fid'),
     'indexes' => array(
       'fid' => array('fid'),
-      'uid' => array('uid')
     ),
   );
 
Index: modules/taxonomy/taxonomy.schema
===================================================================
RCS file: /cvs/drupal/drupal/modules/taxonomy/taxonomy.schema,v
retrieving revision 1.1
diff -u -p -r1.1 taxonomy.schema
--- modules/taxonomy/taxonomy.schema	25 May 2007 12:46:46 -0000	1.1
+++ modules/taxonomy/taxonomy.schema	26 Sep 2007 02:08:21 -0000
@@ -11,7 +11,7 @@ function taxonomy_schema() {
       'weight'      => array('type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'tiny')
     ),
     'primary key' => array('tid'),
-    'indexes' => array('vid' => array('vid')),
+    'indexes' => array('taxonomy_tree' => array('vid', 'weight', 'name')),
   );
 
   $schema['term_hierarchy'] = array(
@@ -35,7 +35,6 @@ function taxonomy_schema() {
     'indexes' => array(
       'nid' => array('nid'),
       'tid' => array('tid'),
-      'vid' => array('vid')
     ),
     'primary key' => array(
       'vid',
