You are here

function rotor_update_6001 in Rotor Banner 7

Same name and namespace in other branches
  1. 6.2 rotor.install \rotor_update_6001()
  2. 6 rotor.install \rotor_update_6001()

File

./rotor.install, line 102
Provides install and uninstall functions for rotor.

Code

function rotor_update_6001() {
  $ret = array();
  db_add_field($ret, 'rotor_item', 'link_target', array(
    'type' => 'varchar',
    'not null' => FALSE,
    'length' => 255,
    'description' => 'The target for the link.',
  ));
  return $ret;
}