You are here

cck_table.install in CCK Table Field 7

Same filename and directory in other branches
  1. 8 cck_table.install
  2. 6 cck_table.install

Defines schema for email fields

File

cck_table.install
View source
<?php

/**
 *  Module converted to 6 by iStryker
 *  Module converted to 7 by iStryker
 *  Sponser by Themes 24/7  http://www.themes247.com & http://www.strykerenterprise.com
 */

/**
 * @file
 * Defines schema for email fields
 */

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

Functions

Namesort descending Description
cck_table_field_schema Implements hook_field_schema().