function gotwo_update_6102 in Go - url redirects 7
Same name and namespace in other branches
- 6 gotwo.install \gotwo_update_6102()
Extend the length of 'dst' column to 255.
File
- ./
gotwo.install, line 100 - Installation script for the gotwo.module
Code
function gotwo_update_6102() {
db_change_field('gotwo', 'dst', 'dst', array(
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
));
return t('URL length for destination has been extended to 255 chars.');
}