You are here

function gotwo_update_6102 in Go - url redirects 6

Same name and namespace in other branches
  1. 7 gotwo.install \gotwo_update_6102()

Extend the length of 'dst' column to 255.

File

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

Code

function gotwo_update_6102() {
  $ret = array();
  db_change_field($ret, 'gotwo', 'dst', 'dst', array(
    'type' => 'varchar',
    'length' => 255,
    'not null' => TRUE,
    'default' => '',
  ));
  return $ret;
}