function shrinktheweb_schema in ShrinkTheWeb 6
Same name and namespace in other branches
- 8 shrinktheweb.install \shrinktheweb_schema()
- 7 shrinktheweb.install \shrinktheweb_schema()
Implementation of hook_schema().
1 call to shrinktheweb_schema()
- shrinktheweb_update_6100 in ./
shrinktheweb.install - This will update the shrinktheweb_log table to its new format
File
- ./
shrinktheweb.install, line 5
Code
function shrinktheweb_schema() {
$schema['shrinktheweb_log'] = array(
'description' => 'Stores the STW requests',
'fields' => array(
'siteid' => array(
'description' => '',
'type' => 'serial',
'unsigned' => TRUE,
'size' => 'normal',
'not null' => TRUE,
),
'domain' => array(
'description' => '',
'type' => 'varchar',
'length' => '255',
'not null' => TRUE,
'default' => '',
),
'hash' => array(
'description' => '',
'type' => 'varchar',
'length' => '32',
'not null' => TRUE,
),
'timestamp' => array(
'description' => '',
'type' => 'varchar',
'length' => '12',
'not null' => TRUE,
'default' => '',
),
'capturedon' => array(
'description' => '',
'type' => 'varchar',
'length' => '12',
'not null' => TRUE,
),
'quality' => array(
'description' => '',
'type' => 'int',
'unsigned' => TRUE,
'size' => 'small',
'not null' => TRUE,
'default' => 90,
),
'full' => array(
'description' => '',
'type' => 'int',
'unsigned' => TRUE,
'size' => 'tiny',
'not null' => TRUE,
'default' => 0,
),
'xmax' => array(
'description' => '',
'type' => 'int',
'unsigned' => TRUE,
'size' => 'small',
'not null' => TRUE,
'default' => 200,
),
'ymax' => array(
'description' => '',
'type' => 'int',
'unsigned' => TRUE,
'size' => 'small',
'not null' => TRUE,
'default' => 150,
),
'nrx' => array(
'description' => '',
'type' => 'int',
'unsigned' => TRUE,
'size' => 'small',
'not null' => TRUE,
'default' => 1024,
),
'nry' => array(
'description' => '',
'type' => 'int',
'unsigned' => TRUE,
'size' => 'small',
'not null' => TRUE,
'default' => 768,
),
'invalid' => array(
'description' => '',
'type' => 'int',
'unsigned' => TRUE,
'size' => 'tiny',
'not null' => TRUE,
),
'stwerrcode' => array(
'description' => '',
'type' => 'varchar',
'length' => '50',
'not null' => TRUE,
),
'error' => array(
'description' => '',
'type' => 'int',
'unsigned' => TRUE,
'size' => 'tiny',
'not null' => TRUE,
'default' => 0,
),
'errcode' => array(
'description' => '',
'type' => 'varchar',
'length' => '50',
'not null' => TRUE,
),
'referrer' => array(
'description' => '',
'type' => 'int',
'unsigned' => TRUE,
'size' => 'tiny',
'not null' => TRUE,
),
),
'primary key' => array(
'siteid',
),
'unique keys' => array(
'hash' => array(
'hash',
),
),
);
return $schema;
}