function statistics_update_6000 in Drupal 6
Allow longer referrers.
Related topics
File
- modules/
statistics/ statistics.install, line 128
Code
function statistics_update_6000() {
$ret = array();
db_change_field($ret, 'accesslog', 'url', 'url', array(
'type' => 'text',
'not null' => FALSE,
));
return $ret;
}