function getlocations_fields_field_schema in Get Locations 7
Same name and namespace in other branches
- 7.2 modules/getlocations_fields/getlocations_fields.install \getlocations_fields_field_schema()
Implements hook_field_schema().
Defines the database schema of the field, using the format used by the Schema API.
All implementations of hook_field_schema() must be in the module's .install file.
See also
http://drupal.org/developing/api/schema
File
- modules/
getlocations_fields/ getlocations_fields.install, line 200 - getlocations_fields.install @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL
Code
function getlocations_fields_field_schema($field) {
switch ($field['type']) {
case 'getlocations_fields':
$columns = array(
'glid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
),
);
break;
}
return array(
'columns' => $columns,
'indexes' => array(
'glid' => array(
'glid',
),
),
);
}