You are here

function openlayers_field_field_schema in Openlayers 7.3

Implements hook_field_schema().

File

modules/openlayers_field/openlayers_field.install, line 11
Openlayers field install file.

Code

function openlayers_field_field_schema($field) {
  return array(
    'columns' => array(
      'value' => array(
        'type' => 'varchar',
        'length' => 128,
        'not null' => FALSE,
      ),
    ),
  );
}