You are here

function cck_time_field_schema in CCK Time 7

Implementation of hook_field_schema().

File

./cck_time.install, line 11
Installation file for CCK Time module.

Code

function cck_time_field_schema($field) {
  $columns = array(
    'value' => array(
      'type' => 'varchar',
      'length' => 10,
      'not null' => FALSE,
    ),
  );
  return array(
    'columns' => $columns,
  );
}