You are here

function match_redirect_update_1 in Match Redirect 7

Add the {match_redirect}.query field.

File

./match_redirect.install, line 65
Install, update, and uninstall functions for the redirect module.

Code

function match_redirect_update_1() {
  $field = array(
    'type' => 'int',
    'size' => 'tiny',
    'not null' => TRUE,
    'default' => 0,
    'description' => 'allow query string to be passed with the redirect.',
  );
  db_add_field('match_redirect', 'query', $field);
}