X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FCore%2FDAO%2FActionLog.php;h=21c4ba8b8c0e8c9ab76a878eb167fa048901f226;hb=655da1f919af8318da84d80422841599c332024d;hp=3857d49fbffebc958532d0ba5b2f360ba4f6598b;hpb=0b774856f17eba55ef85229288ac5beb913436ee;p=civicrm-core.git diff --git a/CRM/Core/DAO/ActionLog.php b/CRM/Core/DAO/ActionLog.php index 3857d49fbf..21c4ba8b8c 100644 --- a/CRM/Core/DAO/ActionLog.php +++ b/CRM/Core/DAO/ActionLog.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Core/ActionLog.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:b2a5ecdfd400bdf2fe892f9391f8a7ea) + * (GenCodeChecksum:f3a6da0a3e4c1c9601265c8ad6eb85f4) */ /** @@ -31,70 +31,90 @@ class CRM_Core_DAO_ActionLog extends CRM_Core_DAO { public static $_log = FALSE; /** - * @var int + * @var int|string|null + * (SQL type: int unsigned) + * Note that values will be retrieved from the database as a string. */ public $id; /** * FK to Contact ID * - * @var int + * @var int|string|null + * (SQL type: int unsigned) + * Note that values will be retrieved from the database as a string. */ public $contact_id; /** * FK to id of the entity that the action was performed on. Pseudo - FK. * - * @var int + * @var int|string + * (SQL type: int unsigned) + * Note that values will be retrieved from the database as a string. */ public $entity_id; /** * name of the entity table for the above id, e.g. civicrm_activity, civicrm_participant * - * @var string + * @var string|null + * (SQL type: varchar(255)) + * Note that values will be retrieved from the database as a string. */ public $entity_table; /** * FK to the action schedule that this action originated from. * - * @var int + * @var int|string + * (SQL type: int unsigned) + * Note that values will be retrieved from the database as a string. */ public $action_schedule_id; /** * date time that the action was performed on. * - * @var datetime + * @var string|null + * (SQL type: datetime) + * Note that values will be retrieved from the database as a string. */ public $action_date_time; /** * Was there any error sending the reminder? * - * @var bool + * @var bool|string + * (SQL type: tinyint) + * Note that values will be retrieved from the database as a string. */ public $is_error; /** * Description / text in case there was an error encountered. * - * @var text + * @var string|null + * (SQL type: text) + * Note that values will be retrieved from the database as a string. */ public $message; /** * Keeps track of the sequence number of this repetition. * - * @var int + * @var int|string|null + * (SQL type: int unsigned) + * Note that values will be retrieved from the database as a string. */ public $repetition_number; /** * Stores the date from the entity which triggered this reminder action (e.g. membership.end_date for most membership renewal reminders) * - * @var datetime + * @var string|null + * (SQL type: datetime) + * Note that values will be retrieved from the database as a string. */ public $reference_date; @@ -234,6 +254,7 @@ class CRM_Core_DAO_ActionLog extends CRM_Core_DAO { 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Error?'), 'description' => ts('Was there any error sending the reminder?'), + 'required' => TRUE, 'where' => 'civicrm_action_log.is_error', 'default' => '0', 'table_name' => 'civicrm_action_log',