dev/core#3719 fix inconistent handling of job_type:label
[civicrm-core.git] / CRM / Core / DAO / Cache.php
index 981ceebaadd941ff5d5d0818a878aa940ccd5bbc..7ab70b4f85b20bfb1c13d366f7b1382d8d39c6a0 100644 (file)
@@ -6,7 +6,7 @@
  *
  * Generated from xml/schema/CRM/Core/Cache.xml
  * DO NOT EDIT.  Generated by CRM_Core_CodeGen
- * (GenCodeChecksum:da6b1275fea0ffb19d09613211f7628e)
+ * (GenCodeChecksum:2b7084711ac3f619ce6f0cc8361dffa4)
  */
 
 /**
@@ -33,7 +33,9 @@ class CRM_Core_DAO_Cache extends CRM_Core_DAO {
   /**
    * Unique table ID
    *
-   * @var int
+   * @var int|string|null
+   *   (SQL type: int unsigned)
+   *   Note that values will be retrieved from the database as a string.
    */
   public $id;
 
@@ -41,41 +43,53 @@ class CRM_Core_DAO_Cache extends CRM_Core_DAO {
    * group name for cache element, useful in cleaning cache elements
    *
    * @var string
+   *   (SQL type: varchar(32))
+   *   Note that values will be retrieved from the database as a string.
    */
   public $group_name;
 
   /**
    * Unique path name for cache element
    *
-   * @var string
+   * @var string|null
+   *   (SQL type: varchar(255))
+   *   Note that values will be retrieved from the database as a string.
    */
   public $path;
 
   /**
    * data associated with this path
    *
-   * @var longtext
+   * @var string|null
+   *   (SQL type: longtext)
+   *   Note that values will be retrieved from the database as a string.
    */
   public $data;
 
   /**
    * Component that this menu item belongs to
    *
-   * @var int
+   * @var int|string|null
+   *   (SQL type: int unsigned)
+   *   Note that values will be retrieved from the database as a string.
    */
   public $component_id;
 
   /**
    * When was the cache item created
    *
-   * @var timestamp
+   * @var string|null
+   *   (SQL type: timestamp)
+   *   Note that values will be retrieved from the database as a string.
    */
   public $created_date;
 
   /**
    * When should the cache item expire
    *
-   * @var timestamp
+   * @var string
+   *   (SQL type: timestamp)
+   *   Note that values will be retrieved from the database as a string.
    */
   public $expired_date;