You are here

function job_scheduler_schema in Job Scheduler 6

Same name and namespace in other branches
  1. 8.2 job_scheduler.install \job_scheduler_schema()
  2. 7.2 job_scheduler.install \job_scheduler_schema()
  3. 7 job_scheduler.install \job_scheduler_schema()

Implementation of hook_schema().

File

./job_scheduler.install, line 11
Schema definitions install/update/uninstall hooks.

Code

function job_scheduler_schema() {
  $schema = array();
  $schema['job_schedule'] = array(
    'description' => t('Schedule of jobs to be executed.'),
    'fields' => array(
      'callback' => array(
        'type' => 'varchar',
        'length' => 128,
        'not null' => TRUE,
        'default' => '',
        'description' => 'Callback to be invoked.',
      ),
      'type' => array(
        'type' => 'varchar',
        'length' => 128,
        'not null' => TRUE,
        'default' => '',
        'description' => 'Type identifier of the job.',
      ),
      'id' => array(
        'type' => 'int',
        'not null' => TRUE,
        'default' => 0,
        'unsigned' => TRUE,
        'description' => 'Numeric identifier of the job.',
      ),
      'last' => array(
        'type' => 'int',
        'unsigned' => TRUE,
        'default' => 0,
        'not null' => TRUE,
        'description' => 'Timestamp when a job was last executed.',
      ),
      'period' => array(
        'type' => 'int',
        'unsigned' => TRUE,
        'default' => 0,
        'not null' => TRUE,
        'description' => 'Time period after which job is to be executed.',
      ),
      'next' => array(
        'type' => 'int',
        'unsigned' => TRUE,
        'default' => 0,
        'not null' => TRUE,
        'description' => 'Timestamp when a job is to be executed (next = last + period), used for fast ordering.',
      ),
      'periodic' => array(
        'type' => 'int',
        'size' => 'small',
        'unsigned' => TRUE,
        'default' => 0,
        'not null' => TRUE,
        'description' => 'If true job will be automatically rescheduled with same period.',
      ),
      'scheduled' => array(
        'type' => 'int',
        'unsigned' => TRUE,
        'default' => 0,
        'not null' => TRUE,
        'description' => 'Timestamp when a job was scheduled. 0 if a job is currently not scheduled.',
      ),
    ),
    'indexes' => array(
      'callback_type_id' => array(
        'callback',
        'type',
        'id',
      ),
      'callback_type' => array(
        'callback',
        'type',
      ),
      'next' => array(
        'next',
      ),
      'scheduled' => array(
        'scheduled',
      ),
    ),
  );
  return $schema;
}