function dblog_update_6000 in Drupal 6
Allow longer referrers.
Related topics
File
- modules/
dblog/ dblog.install, line 110
Code
function dblog_update_6000() {
$ret = array();
db_change_field($ret, 'watchdog', 'referer', 'referer', array(
'type' => 'text',
'not null' => FALSE,
));
return $ret;
}