function imagefield_focus_schema in ImageField Focus 7
Implementation of hook_schema().
File
- ./
imagefield_focus.install, line 14 - Written by Henri MEDOT <henri.medot[AT]absyx[DOT]fr> http://www.absyx.fr
Code
function imagefield_focus_schema() {
$schema['imagefield_focus_file'] = array(
'fields' => array(
'fid' => array(
'description' => 'File ID.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
),
'focus_rect' => array(
'type' => 'varchar',
'length' => 30,
'not null' => TRUE,
'default' => '',
),
'crop_rect' => array(
'type' => 'varchar',
'length' => 30,
'not null' => TRUE,
'default' => '',
),
),
'primary key' => array(
'fid',
),
);
return $schema;
}