node_limit_interval.install in Node Limit 8
Installation functions for module node_limit_interval.
File
old/node_limit_interval/node_limit_interval.installView source
<?php
/**
* @file
* Installation functions for module node_limit_interval.
*/
/**
* Implements hook_schema().
*/
function node_limit_interval_schema() {
$schema['node_limit_interval'] = array(
'description' => 'The table for applying node limits to a time interval',
'fields' => array(
'lid' => array(
'description' => 'The {node_limit}.lid',
'type' => 'int',
'not null' => TRUE,
),
'ninterval' => array(
'description' => 'The interval for this limit',
'type' => 'int',
'not null' => TRUE,
),
'unit' => array(
'description' => 'The unit for the interval',
'type' => 'int',
'not null' => TRUE,
),
),
'primary key' => array(
'lid',
),
);
return $schema;
}
/**
* Renaming interval field to avoid mysql restricted name usage.
*/
function node_limit_interval_update_7001() {
// Cannot use db_change_field() because of the restricted name.
$ret = \Drupal::database()
->query("ALTER TABLE {node_limit_interval} CHANGE `interval` `interval_value` INT(11) NOT NULL DEFAULT '0' COMMENT 'The interval for this limit'");
return !empty($ret);
}
/**
* Renaming interval field to avoid mysql restricted name usage.
*/
function node_limit_interval_update_7002() {
$ret = db_change_field('node_limit_interval', 'interval_value', 'ninterval', array(
'description' => 'The interval for this limit',
'type' => 'int',
'not null' => TRUE,
));
return !empty($ret);
}
Functions
Name | Description |
---|---|
node_limit_interval_schema | Implements hook_schema(). |
node_limit_interval_update_7001 | Renaming interval field to avoid mysql restricted name usage. |
node_limit_interval_update_7002 | Renaming interval field to avoid mysql restricted name usage. |