CRM-15168 remove inadvertantly added line break
[civicrm-core.git] / xml / schema / Queue / QueueItem.xml
index 927bff0a72af2fbe6aeccb76aeee8b6e6302cbdf..fa2ed63e8b0b4e05f75224c170e24d56079b94b8 100644 (file)
@@ -1,9 +1,9 @@
 <?xml version="1.0" encoding="iso-8859-1" ?>
 
 <table>
-  <!-- 
+  <!--
     NOTE: To facilitate upgrades, manually copy the CREATE TABLE statement
-    from sql/civicrm.mysql to sql/civicrm_queue_item.mysql  
+    from sql/civicrm.mysql to sql/civicrm_queue_item.mysql
   -->
   <base>CRM/Queue</base>
   <class>QueueItem</class>
   <comment>Stores a list of queue items</comment>
   <add>4.2</add>
   <field>
-      <name>id</name>
-      <type>int unsigned</type>
-      <required>true</required>
+    <name>id</name>
+    <type>int unsigned</type>
+    <required>true</required>
   </field>
   <primaryKey>
-       <name>id</name>
-       <autoincrement>true</autoincrement>
+    <name>id</name>
+    <autoincrement>true</autoincrement>
   </primaryKey>
   <field>
-      <name>queue_name</name>
-      <type>varchar</type>
-      <length>64</length>
-      <comment>Name of the queue which includes this item</comment>
-      <required>true</required>
+    <name>queue_name</name>
+    <type>varchar</type>
+    <length>64</length>
+    <comment>Name of the queue which includes this item</comment>
+    <required>true</required>
+    <html>
+      <type>Text</type>
+    </html>
   </field>
   <field>
-      <name>weight</name>
-      <type>int</type>
-      <required>true</required>
+    <name>weight</name>
+    <type>int</type>
+    <required>true</required>
+    <html>
+      <type>Text</type>
+    </html>
   </field>
   <field>
-      <name>submit_time</name>
-      <type>datetime</type>
-      <comment>date on which this item was submitted to the queue</comment>
-      <required>true</required>
+    <name>submit_time</name>
+    <type>datetime</type>
+    <comment>date on which this item was submitted to the queue</comment>
+    <required>true</required>
+    <html>
+      <type>Select Date</type>
+    </html>
   </field>
   <field>
-      <name>release_time</name>
-      <type>datetime</type>
-      <comment>date on which this job becomes available; null if ASAP</comment>
+    <name>release_time</name>
+    <type>datetime</type>
+    <comment>date on which this job becomes available; null if ASAP</comment>
+    <html>
+      <type>Select Date</type>
+    </html>
   </field>
+
   <field>
-      <name>data</name>
-      <title>Queue item datas</title>
-      <type>text</type>
-      <rows>8</rows>
-      <cols>60</cols>
-      <comment>Serialized queue</comment>
+    <name>data</name>
+    <title>Queue item datas</title>
+    <type>text</type>
+    <comment>Serialized queue</comment>
   </field>
   <index>
-     <name>index_queueids</name>
-     <fieldName>queue_name</fieldName>
-     <fieldName>weight</fieldName>
-     <fieldName>id</fieldName>
+    <name>index_queueids</name>
+    <fieldName>queue_name</fieldName>
+    <fieldName>weight</fieldName>
+    <fieldName>id</fieldName>
   </index>
 </table>