You are here

function download_count_update_7303 in Download Count 7.3

Fix the default value of the ip_address field.

File

./download_count.install, line 293
Installation code for the download_count module.

Code

function download_count_update_7303() {
  db_change_field('download_count', 'ip_address', 'ip_address', array(
    'description' => "The IP address of the downloading user.",
    'type' => 'varchar',
    'length' => 128,
    'not null' => TRUE,
  ));
}