? taxonomy_index.patch
? sites/default/files
? sites/default/settings.php
Index: modules/taxonomy/taxonomy.install
===================================================================
RCS file: /cvs/drupal/drupal/modules/taxonomy/taxonomy.install,v
retrieving revision 1.54
diff -u -p -r1.54 taxonomy.install
--- modules/taxonomy/taxonomy.install	21 Nov 2010 09:21:38 -0000	1.54
+++ modules/taxonomy/taxonomy.install	30 Nov 2010 16:14:20 -0000
@@ -196,7 +196,6 @@ function taxonomy_schema() {
       'created' => array(
         'description' => 'The Unix timestamp when the node was created.',
         'type' => 'int',
-        'unsigned' => TRUE,
         'not null' => TRUE,
         'default'=> 0,
       ),
@@ -548,7 +547,7 @@ function taxonomy_update_7005(&$sandbox)
   //   in this array but a term_node relationship exists mapping a
   //   term in voc id to node of that type, the relationship is
   //   assigned to the taxonomymyextra field which allows terms of all
-  //   vocabularies. 
+  //   vocabularies.
   // - cursor[values], cursor[deltas]: The contents of $values and
   //   $deltas at the end of the previous call to this function. These
   //   need to be preserved across calls because a single batch of
@@ -806,3 +805,16 @@ function taxonomy_update_7009() {
   ));
 }
 
+/**
+ * Change {taxonomy_index}.created to support signed int.
+*/
+function taxonomy_update_7010() {
+  db_change_field('taxonomy_index', 'created', 'created', array(
+    'description' => 'The Unix timestamp when the node was created.',
+    'type' => 'int',
+    'unsigned' => FALSE,
+    'not null' => TRUE,
+    'default'=> 0,
+  ));
+}
+
