function mee_schema in Scald: Media Management made easy 7
Same name and namespace in other branches
- 6 mee/mee.install \mee_schema()
Implements hook_schema().
File
- modules/
fields/ mee/ mee.install, line 10 - MEE installer.
Code
function mee_schema() {
$schema['mee_resource'] = array(
'fields' => array(
'entity_type' => array(
'type' => 'varchar',
'length' => 128,
'not null' => TRUE,
'default' => '',
),
'entity_id' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'revision_id' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'atom_sid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'field' => array(
'type' => 'varchar',
'length' => 31,
'not null' => TRUE,
'default' => '',
),
'delta' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'weight' => array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
'required' => array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
'copyright' => array(
'type' => 'text',
),
),
'primary key' => array(
'entity_type',
'entity_id',
'revision_id',
'atom_sid',
'field',
'delta',
),
);
return $schema;
}