weekdays.install in Weekdays field 7
Install, update and uninstall functions for weekday module.
File
weekdays.installView 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
Name![]() |
Description |
---|---|
weekdays_field_schema | Implements hook_field_schema(). |