function photos_schema in Album Photos 6.2
Same name and namespace in other branches
- 8.5 photos.install \photos_schema()
- 8.4 photos.install \photos_schema()
- 7.3 photos.install \photos_schema()
- 6.0.x photos.install \photos_schema()
File
- ./
photos.install, line 2
Code
function photos_schema() {
$schema['x_album'] = array(
'fields' => array(
'pid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
),
'fid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'count' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'data' => array(
'type' => 'text',
'not null' => TRUE,
'size' => 'big',
),
),
'indexes' => array(
'fid' => array(
'fid',
),
'count' => array(
'count',
),
),
'primary key' => array(
'pid',
),
);
$schema['x_image'] = array(
'fields' => array(
'fid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
),
'pid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
),
'des' => array(
'type' => 'text',
'not null' => TRUE,
'size' => 'big',
),
'wid' => array(
'type' => 'int',
'size' => 'tiny',
'length' => 4,
'not null' => TRUE,
'default' => 0,
),
'count' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'comcount' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'exif' => array(
'type' => 'int',
'size' => 'tiny',
'length' => 1,
'default' => 0,
),
),
'indexes' => array(
'pid' => array(
'pid',
),
'wid' => array(
'wid',
),
'count' => array(
'count',
),
'comcount' => array(
'comcount',
),
),
'primary key' => array(
'fid',
),
);
$schema['x_vote'] = array(
'fields' => array(
'fid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
),
'cid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
),
),
'indexes' => array(
'fid' => array(
'fid',
),
'cid' => array(
'cid',
),
),
);
$schema['x_node'] = array(
'fields' => array(
'nid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
),
'fid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
),
),
'indexes' => array(
'nid' => array(
'nid',
),
'fid' => array(
'fid',
),
),
);
$schema['x_count'] = array(
'fields' => array(
'id' => array(
'type' => 'serial',
'not null' => TRUE,
),
'cid' => array(
'type' => 'int',
'default' => 0,
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'changed' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'type' => array(
'type' => 'varchar',
'length' => 12,
'default' => '',
'not null' => TRUE,
),
'value' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
),
'indexes' => array(
'cid' => array(
'cid',
),
'type' => array(
'type',
),
'value' => array(
'value',
),
),
'primary key' => array(
'id',
),
);
$schema['cache_photos'] = drupal_get_schema_unprocessed('system', 'cache');
return $schema;
}