Index: geotaxonomy.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/geotaxonomy/geotaxonomy.install,v
retrieving revision 1.1.2.1.2.2
diff -u -p -r1.1.2.1.2.2 geotaxonomy.install
--- geotaxonomy.install	30 Jul 2010 22:00:20 -0000	1.1.2.1.2.2
+++ geotaxonomy.install	6 Aug 2010 16:36:08 -0000
@@ -127,16 +127,6 @@ function geotaxonomy_update_2() {
   return $ret;
 }
 
-function geotaxonomy_update_3() {
-  $ret = array();
-  $geometry = array(
-    'type' => 'text',
-    'description' => 'Geometry.',
-  );
-  db_add_field($ret, 'term_geo', 'geometry', $geometry);
-  return $ret;
-}
-
 /**
  * Add external_id, parent_name and parent_external_id field.
  *
@@ -171,3 +161,16 @@ function geotaxonomy_update_6002() {
   
   return array();
 }
+
+/**
+ * Add geometry column to schema.
+ */
+function geotaxonomy_update_6003() {
+  $ret = array();
+  $geometry = array(
+    'type' => 'text',
+    'description' => 'Geometry.',
+  );
+  db_add_field($ret, 'term_geo', 'geometry', $geometry);
+  return $ret;
+}
