Merge pull request #11459 from karthik-awebon/master
[civicrm-core.git] / sql / civicrm_queue_item.mysql
index 1acbc9fa445d2e25d2e3347e1c03ac7aba5cd2dc..8f27343a842d7f18713bf764e74f414168eb7d62 100644 (file)
@@ -16,15 +16,15 @@ CREATE TABLE `civicrm_queue_item` (
      `weight` int NOT NULL   ,
      `submit_time` datetime NOT NULL   COMMENT 'date on which this item was submitted to the queue',
      `release_time` datetime    COMMENT 'date on which this job becomes available; null if ASAP',
-     `data` text    COMMENT 'Serialized queue' 
+     `data` text    COMMENT 'Serialized queue'
 ,
     PRIMARY KEY ( `id` )
+
     ,     INDEX `index_queueids`(
         `queue_name`
       , `weight`
       , `id`
   )
-  
+
+
 )  ENGINE=InnoDB DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci  ;