You are here

composed_field.install in Composed Field 7

Install, update and uninstall functions for the composed field module.

File

composed_field.install
View source
<?php

/**
 * @file
 * Install, update and uninstall functions for the composed field module.
 */

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

Functions