function photos_schema in Album Photos 8.4
Same name and namespace in other branches
- 8.5 photos.install \photos_schema()
- 6.2 photos.install \photos_schema()
- 7.3 photos.install \photos_schema()
- 6.0.x photos.install \photos_schema()
Implements hook_schema().
File
- ./
photos.install, line 11 - Install, update, and uninstall functions for the Photos module.
Code
function photos_schema() {
$schema['photos_album'] = [
'fields' => [
'pid' => [
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
],
'fid' => [
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
],
'wid' => [
'type' => 'int',
'not null' => TRUE,
'default' => 0,
],
'count' => [
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
],
'data' => [
'type' => 'text',
'not null' => TRUE,
'size' => 'big',
],
],
'indexes' => [
'fid' => [
'fid',
],
'wid' => [
'wid',
],
],
'primary key' => [
'pid',
],
];
$schema['photos_image'] = [
'fields' => [
'fid' => [
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
],
'pid' => [
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
],
'title' => [
'description' => 'The title of this image.',
'type' => 'varchar',
'length' => 255,
'not null' => FALSE,
'default' => '',
],
'des' => [
'type' => 'text',
'not null' => TRUE,
'size' => 'big',
],
'wid' => [
'type' => 'int',
'not null' => TRUE,
'default' => 0,
],
'count' => [
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
],
'comcount' => [
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
],
'exif' => [
'type' => 'int',
'size' => 'tiny',
'length' => 1,
'default' => 0,
],
],
'indexes' => [
'pid' => [
'pid',
],
'wid' => [
'wid',
],
'count' => [
'count',
],
'comcount' => [
'comcount',
],
],
'primary key' => [
'fid',
],
];
$schema['photos_comment'] = [
'fields' => [
'fid' => [
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
],
'cid' => [
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
],
],
'indexes' => [
'fid' => [
'fid',
],
'cid' => [
'cid',
],
],
];
$schema['photos_node'] = [
'fields' => [
'nid' => [
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
],
'fid' => [
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
],
'wid' => [
'type' => 'int',
'not null' => TRUE,
'default' => 0,
],
],
'indexes' => [
'nid' => [
'nid',
],
'fid' => [
'fid',
],
'wid' => [
'wid',
],
],
];
$schema['photos_count'] = [
'fields' => [
'id' => [
'type' => 'serial',
'not null' => TRUE,
],
'cid' => [
'type' => 'int',
'default' => 0,
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
],
'changed' => [
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
],
'type' => [
'type' => 'varchar',
'length' => 12,
'default' => '',
'not null' => TRUE,
],
'value' => [
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
],
],
'indexes' => [
'cid' => [
'cid',
],
'type' => [
'type',
],
'value' => [
'value',
],
],
'primary key' => [
'id',
],
];
return $schema;
}