system_update_7002
- Versions
- 7
system_update_7002()
Add a table to store blocked IP addresses.
Related topics
Code
modules/system/system.install, line 1646
<?php
function system_update_7002() {
$schema['blocked_ips'] = array(
'description' => 'Stores blocked IP addresses.',
'fields' => array(
'iid' => array(
'description' => 'Primary Key: unique ID for IP addresses.',
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
),
'ip' => array(
'description' => 'IP address',
'type' => 'varchar',
'length' => 32,
'not null' => TRUE,
'default' => '',
),
),
'indexes' => array(
'blocked_ip' => array('ip'),
),
'primary key' => array('iid'),
);
db_create_table('blocked_ips', $schema['blocked_ips']);
}
?>Login or register to post comments 