function context_field_field_schema in Context Field 7
Implements hook_field_schema().
File
- ./
context_field.install, line 11 - Context Field install functionality.
Code
function context_field_field_schema() {
$columns = array(
'context' => array(
'type' => 'varchar',
'size' => 'normal',
'length' => 128,
'not null' => FALSE,
),
);
return array(
'columns' => $columns,
);
}