Index: /Users/Kiam/Sandbox/6.1-dev/contributions/modules/xmlsitemap/xmlsitemap_user/xmlsitemap_user.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/xmlsitemap/xmlsitemap_user/xmlsitemap_user.install,v
retrieving revision 1.6.2.53
diff -u -p -r1.6.2.53 xmlsitemap_user.install
--- xmlsitemap_user.install	6 May 2009 23:44:02 -0000	1.6.2.53
+++ xmlsitemap_user.install	8 May 2009 15:30:32 -0000
@@ -52,13 +52,6 @@ function xmlsitemap_user_schema() {
         'not null' => TRUE,
         'default' => 0,
       ),
-      'comments' => array(
-        'description' => 'The number of comments authored from the user.',
-        'type' => 'int',
-        'unsigned' => TRUE,
-        'not null' => TRUE,
-        'default' => 0,
-      ),
       'priority_override' => array(
         'description' => 'The priority of the term in the sitemap.',
         'type' => 'float',
@@ -164,16 +157,8 @@ function xmlsitemap_user_update_6000() {
         );
       }
     }
-    if (!db_column_exists('xmlsitemap_user', 'comments')) {
-      db_add_field($ret, 'xmlsitemap_user', 'comments',
-        array(
-          'description' => 'The number of comments authored from the user.',
-          'type' => 'int',
-          'unsigned' => TRUE,
-          'not null' => TRUE,
-          'default' => 0,
-        )
-      );
+    if (db_column_exists('xmlsitemap_user', 'comments')) {
+      db_drop_field($ret, 'xmlsitemap_user', 'comments');
     }
     $ret[] = update_sql("UPDATE {xmlsitemap_user}
       SET priority_override = -2.0
@@ -214,13 +199,6 @@ function xmlsitemap_user_update_6000() {
             'not null' => TRUE,
             'default' => 0,
           ),
-          'comments' => array(
-            'description' => 'The number of comments authored from the user.',
-            'type' => 'int',
-            'unsigned' => TRUE,
-            'not null' => TRUE,
-            'default' => 0,
-          ),
           'priority_override' => array(
             'description' => 'The priority of the term in the sitemap.',
             'type' => 'float',
