function support_substatus_schema in Support Ticketing System 6
Support substatus database schema definition.
File
- support_substatus/
support_substatus.install, line 11
Code
function support_substatus_schema() {
$schema['support_substatus'] = array(
'description' => 'Assign substatus fields to support clients.',
'fields' => array(
'ssid' => array(
'type' => 'serial',
'not null' => TRUE,
'unsigned' => TRUE,
),
'substatus' => array(
'type' => 'varchar',
'length' => 255,
'not null' => FALSE,
'default' => '',
),
'disabled' => array(
'type' => 'int',
'size' => 'tiny',
'not null' => TRUE,
'default' => 0,
),
'weight' => array(
'type' => 'int',
'not null' => TRUE,
'unsigned' => FALSE,
'default' => 0,
),
),
'primary key' => array(
'ssid',
),
'keys' => array(
'substatus' => array(
'substatus',
'disabled',
'weight',
),
),
);
$schema['support_substatus_client'] = array(
'fields' => array(
'ssid' => array(
'type' => 'int',
'not null' => TRUE,
'unsigned' => TRUE,
'default' => 0,
),
'clid' => array(
'type' => 'int',
'not null' => TRUE,
'unsigned' => TRUE,
'default' => 0,
),
),
'primary key' => array(
'ssid',
'clid',
),
);
$schema['support_substatus_state'] = array(
'fields' => array(
'ssid' => array(
'type' => 'int',
'not null' => TRUE,
'unsigned' => TRUE,
'default' => 0,
),
'stid' => array(
'type' => 'int',
'not null' => TRUE,
'unsigned' => TRUE,
'default' => 0,
),
),
'primary key' => array(
'ssid',
'stid',
),
);
$schema['support_substatus_ticket'] = array(
'description' => 'Stores which substatus fields are assigned to tickets.',
'fields' => array(
'trid' => array(
'type' => 'serial',
'not null' => TRUE,
'unsigned' => TRUE,
),
'type' => array(
'type' => 'varchar',
'length' => 16,
'not null' => TRUE,
'default' => '',
),
'id' => array(
'type' => 'int',
'not null' => TRUE,
'unsigned' => TRUE,
'default' => 0,
),
'subid' => array(
'type' => 'int',
'not null' => TRUE,
'unsigned' => TRUE,
'default' => 0,
),
'nid' => array(
'type' => 'int',
'not null' => TRUE,
'unsigned' => TRUE,
'default' => 0,
),
'current' => array(
'type' => 'int',
'not null' => TRUE,
'unsigned' => TRUE,
'default' => 0,
),
),
'primary key' => array(
'trid',
),
'keys' => array(
'nid' => array(
'nid',
'subid',
'current',
),
),
'unique keys' => array(
'rate' => array(
'type',
'id',
'subid',
),
),
);
return $schema;
}