You are here

weekdays.install in Weekdays field 7

Install, update and uninstall functions for weekday module.

File

weekdays.install
View source
<?php

/**
 * @file
 * Install, update and uninstall functions for weekday module.
 */

/**
 * Implements hook_field_schema().
 */
function weekdays_field_schema($field) {
  return array(
    'columns' => array(
      'value' => array(
        'type' => 'int',
        'size' => 'tiny',
        'unsigned' => TRUE,
        'not null' => TRUE,
        'default' => 0,
        'description' => 'A bitwise representation of selected week days.',
      ),
    ),
  );
}

Functions

Namesort descending Description
weekdays_field_schema Implements hook_field_schema().