Index: nodequeue/smartqueue.install
===================================================================
--- smartqueue.install	(revision 15304)
+++ smartqueue.install	(revision 15320)
@@ -20,7 +20,7 @@
     ),
     'primary key' => array('qid'),
   );
-  
+
   return $schema;
 }
 
@@ -35,25 +35,31 @@
 function smartqueue_update_6003() {
   $ret = array();
   // Don't use hook_schema for database updates per http://drupal.org/node/150220.
-  $schema = array(
-    'description' => t('Table for smartqueues, storing global information for each queue.'),
-    'fields' => array(
-      'qid' => array(
-        'description' => t('The primary identifier for a queue.'),
-        'type' => 'serial',
-        'unsigned' => TRUE,
-        'not null' => TRUE
+  // Its possible that users who installed the 2.7 or 2.8 versions of smartqueue will already have this table:
+  if (!db_table_exists('smartqueue')) {
+    $schema = array(
+      'description' => t('Table for smartqueues, storing global information for each queue.'),
+      'fields' => array(
+        'qid' => array(
+          'description' => t('The primary identifier for a queue.'),
+          'type' => 'serial',
+          'unsigned' => TRUE,
+          'not null' => TRUE
+        ),
+        'use_parents' => array(
+          'description' => t("Whether a queue is to use the terms' parents when displaying the queue selection."),
+          'type' => 'int',
+          'size' => 'tiny',
+          'default' => 0,
+        ),
       ),
-      'use_parents' => array(
-        'description' => t("Whether a queue is to use the terms' parents when displaying the queue selection."),
-        'type' => 'int',
-        'size' => 'tiny',
-        'default' => 0,
-      ),
-    ),
-    'primary key' => array('qid'),
-  );
-  db_create_table($ret, 'smartqueue', $schema);
-  $ret[] = update_sql('INSERT INTO {smartqueue} (qid) SELECT qid FROM {nodequeue_queue}');
+      'primary key' => array('qid'),
+    );
+    db_create_table($ret, 'smartqueue', $schema);
+  }
+  $result = db_query('SELECT q.qid FROM {nodequeue_queue} q LEFT JOIN {smartqueue} s ON q.qid = s.qid WHERE s.qid IS NULL');
+  while ($queue = db_fetch_object($result)) {
+    $ret[] = update_sql('INSERT INTO {smartqueue} (qid) VALUES (' . $queue->qid . ')');
+  }
   return $ret;
 }
