function shrinktheweb_schema in ShrinkTheWeb 7
Same name and namespace in other branches
- 8 shrinktheweb.install \shrinktheweb_schema()
- 6 shrinktheweb.install \shrinktheweb_schema()
Implementation of hook_schema().
2 calls to shrinktheweb_schema()
- shrinktheweb_update_7000 in ./
shrinktheweb.install - This will update the shrinktheweb_log table from Drupal 6.x to its new format for Drupal 7.x
- shrinktheweb_update_7100 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(
'stw_siteid' => array(
'description' => '',
'type' => 'serial',
'unsigned' => TRUE,
'size' => 'normal',
'not null' => TRUE,
),
'stw_domain' => array(
'description' => '',
'type' => 'varchar',
'length' => '255',
'not null' => TRUE,
'default' => '',
),
'stw_hash' => array(
'description' => '',
'type' => 'varchar',
'length' => '32',
'not null' => TRUE,
),
'stw_timestamp' => array(
'description' => '',
'type' => 'varchar',
'length' => '12',
'not null' => TRUE,
'default' => '',
),
'stw_capturedon' => array(
'description' => '',
'type' => 'varchar',
'length' => '12',
'not null' => TRUE,
),
'stw_quality' => array(
'description' => '',
'type' => 'int',
'unsigned' => TRUE,
'size' => 'small',
'not null' => TRUE,
'default' => 90,
),
'stw_full' => array(
'description' => '',
'type' => 'int',
'unsigned' => TRUE,
'size' => 'tiny',
'not null' => TRUE,
'default' => 0,
),
'stw_xmax' => array(
'description' => '',
'type' => 'int',
'unsigned' => TRUE,
'size' => 'small',
'not null' => TRUE,
'default' => 200,
),
'stw_ymax' => array(
'description' => '',
'type' => 'int',
'unsigned' => TRUE,
'size' => 'small',
'not null' => TRUE,
'default' => 150,
),
'stw_nrx' => array(
'description' => '',
'type' => 'int',
'unsigned' => TRUE,
'size' => 'small',
'not null' => TRUE,
'default' => 1024,
),
'stw_nry' => array(
'description' => '',
'type' => 'int',
'unsigned' => TRUE,
'size' => 'small',
'not null' => TRUE,
'default' => 768,
),
'stw_invalid' => array(
'description' => '',
'type' => 'int',
'unsigned' => TRUE,
'size' => 'tiny',
'not null' => TRUE,
),
'stw_stwerrcode' => array(
'description' => '',
'type' => 'varchar',
'length' => '50',
'not null' => TRUE,
),
'stw_error' => array(
'description' => '',
'type' => 'int',
'unsigned' => TRUE,
'size' => 'tiny',
'not null' => TRUE,
'default' => 0,
),
'stw_errcode' => array(
'description' => '',
'type' => 'varchar',
'length' => '50',
'not null' => TRUE,
),
),
'primary key' => array(
'stw_siteid',
),
'unique keys' => array(
'key' => array(
'stw_hash',
),
),
);
return $schema;
}