You are here

function ip_ranges_update_7201 in IP Ranges 7.2

Added description field.

File

./ip_ranges.install, line 50
Install functions for the ip_ranges module.

Code

function ip_ranges_update_7201(&$sandbox) {
  db_add_field('ip_ranges', 'description', array(
    'type' => 'varchar',
    'length' => 255,
    'not null' => TRUE,
    'default' => '',
  ));
}