You are here

function cck_list_field_schema in CCK List 8

Same name and namespace in other branches
  1. 7 cck_list.install \cck_list_field_schema()

Implements hook_field_schema().

File

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

Code

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