You are here

cck_time.install in CCK Time 7

Installation file for CCK Time module.

File

cck_time.install
View source
<?php

/**
 * @file
 * Installation file for CCK Time module.
 */

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

Functions

Namesort descending Description
cck_time_field_schema Implementation of hook_field_schema().