You are here

function cck_table_field_schema in CCK Table Field 7

Same name and namespace in other branches
  1. 8 cck_table.install \cck_table_field_schema()

Implements hook_field_schema().

File

./cck_table.install, line 17
Defines schema for email fields

Code

function cck_table_field_schema($field) {
  return array(
    'columns' => array(
      'table' => array(
        'type' => 'text',
        'not null' => FALSE,
      ),
    ),
  );
}