AlkantarClanX12
| Current Path : /var/www/clients/client1/web1/web/sites/all/modules/rate/expiration/ |
| Current File : /var/www/clients/client1/web1/web/sites/all/modules/rate/expiration/rate_expiration.install |
<?php
/**
* @file
* Installation/Uninstallation functions for rate expiration module.
*/
/**
* Implements hook_schema().
*/
function rate_expiration_schema() {
$schema = array();
$schema['rate_expiration'] = array(
'fields' => array(
'nid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
),
'widget_name' => array(
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
),
'start' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
),
'end' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
),
),
'primary key' => array('nid', 'widget_name'),
);
return $schema;
}