You are here

function composed_field_field_schema in Composed Field 7

Implements hook_field_schema().

File

./composed_field.install, line 11
Install, update and uninstall functions for the composed field module.

Code

function composed_field_field_schema($field) {
  return array(
    'columns' => array(
      'composed' => array(
        'type' => 'blob',
        'size' => 'big',
        'not null' => FALSE,
        'serialize' => TRUE,
      ),
    ),
  );
}