You are here

function download_count_update_7302 in Download Count 7.3

Change the referrer field to be text instead of varchar.

File

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

Code

function download_count_update_7302() {
  db_change_field('download_count', 'referrer', 'referrer', array(
    'description' => 'Referrer URI.',
    'type' => 'text',
    'not null' => TRUE,
  ));
}