X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FCore%2FDAO%2FCache.php;h=7ab70b4f85b20bfb1c13d366f7b1382d8d39c6a0;hb=94a0a5499ab27f49326e184a1a74438adea2442c;hp=981ceebaadd941ff5d5d0818a878aa940ccd5bbc;hpb=2877d3b86f323651ab634c2aa03f8f74ed28c67f;p=civicrm-core.git diff --git a/CRM/Core/DAO/Cache.php b/CRM/Core/DAO/Cache.php index 981ceebaad..7ab70b4f85 100644 --- a/CRM/Core/DAO/Cache.php +++ b/CRM/Core/DAO/Cache.php @@ -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;