X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FMailing%2FDAO%2FMailingJob.php;h=3ba252d04082e85f77212e577f6bf7393a242968;hb=18e801835e46978b37a2d52b9b25a5fa9369817c;hp=7058a2751a352fd56ad05ef77c76874362027b27;hpb=ff92f194c4e5887e0925a87b2c35d7b2227c77d5;p=civicrm-core.git diff --git a/CRM/Mailing/DAO/MailingJob.php b/CRM/Mailing/DAO/MailingJob.php index 7058a2751a..3ba252d040 100644 --- a/CRM/Mailing/DAO/MailingJob.php +++ b/CRM/Mailing/DAO/MailingJob.php @@ -6,7 +6,7 @@ * * Generated from xml/schema/CRM/Mailing/MailingJob.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen - * (GenCodeChecksum:2527bca832d0e7751c69a42d33f28159) + * (GenCodeChecksum:fdca7fda2701c59049924abfdb6adf3b) */ /** @@ -32,77 +32,99 @@ class CRM_Mailing_DAO_MailingJob 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; /** * The ID of the mailing this Job will send. * - * @var int + * @var int|string + * (SQL type: int unsigned) + * Note that values will be retrieved from the database as a string. */ public $mailing_id; /** * date on which this job was scheduled. * - * @var timestamp + * @var string + * (SQL type: timestamp) + * Note that values will be retrieved from the database as a string. */ public $scheduled_date; /** * date on which this job was started. * - * @var timestamp + * @var string + * (SQL type: timestamp) + * Note that values will be retrieved from the database as a string. */ public $start_date; /** * date on which this job ended. * - * @var timestamp + * @var string + * (SQL type: timestamp) + * Note that values will be retrieved from the database as a string. */ public $end_date; /** * The state of this job * - * @var string + * @var string|null + * (SQL type: varchar(12)) + * Note that values will be retrieved from the database as a string. */ public $status; /** * Is this job for a test mail? * - * @var bool + * @var bool|string|null + * (SQL type: tinyint) + * Note that values will be retrieved from the database as a string. */ public $is_test; /** * Type of mailling job: null | child * - * @var string + * @var string|null + * (SQL type: varchar(255)) + * Note that values will be retrieved from the database as a string. */ public $job_type; /** * Parent job id * - * @var int + * @var int|string|null + * (SQL type: int unsigned) + * Note that values will be retrieved from the database as a string. */ public $parent_id; /** * Offset of the child job * - * @var int + * @var int|string|null + * (SQL type: int) + * Note that values will be retrieved from the database as a string. */ public $job_offset; /** * Queue size limit for each child job * - * @var int + * @var int|string|null + * (SQL type: int) + * Note that values will be retrieved from the database as a string. */ public $job_limit;