composed_field.install in Composed Field 7
Install, update and uninstall functions for the composed field module.
File
composed_field.installView 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
Name![]() |
Description |
---|---|
composed_field_field_schema | Implements hook_field_schema(). |