You are here

function gotwo_update_7101 in Go - url redirects 7

Extend the length of 'dst' column to 2048.

File

./gotwo.install, line 120
Installation script for the gotwo.module

Code

function gotwo_update_7101() {
  db_change_field('gotwo', 'dst', 'dst', array(
    'type' => 'varchar',
    'length' => 2048,
    'not null' => TRUE,
    'default' => '',
  ));
  return t('URL length for destination has been extended to 2048 chars.');
}