function ip_ranges_update_8101 in IP Ranges 8
Added description field for IP Ranges.
File
- ./
ip_ranges.install, line 66 - Install functions for the ip_ranges module.
Code
function ip_ranges_update_8101() {
db_add_field('ip_ranges', 'description', array(
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
));
}