function list_field_schema
7.x list.install | list_field_schema($field) |
Implements hook_field_schema().
File
- drupal-7.x/
modules/ field/ modules/ list/ list.install, line 11 - Install, update and uninstall functions for the list module.
Code
function list_field_schema($field) {
switch ($field['type']) {
case 'list_text':
$columns = array(
'value' => array(
'type' => 'varchar',
'length' => 255,
'not null' => FALSE,
),
);
break;
case 'list_float':
$columns = array(
'value' => array(
'type' => 'float',
'not null' => FALSE,
),
);
break;
case 'list_integer':
case 'list_boolean':
$columns = array(
'value' => array(
'type' => 'int',
'not null' => FALSE,
),
);
break;
}
return array(
'columns' => $columns,
'indexes' => array(
'value' => array('value'),
),
);
}