You are here

function votingapi_update_8 in Voting API 6.2

Same name and namespace in other branches
  1. 5 votingapi.install \votingapi_update_8()
  2. 6 votingapi.install \votingapi_update_8()

File

./votingapi.install, line 236
Installation file for VotingAPI module.

Code

function votingapi_update_8() {

  // whoops. mis-named column.
  $ret = array();
  db_change_column($ret, 'votingapi_action_set', 'criteria_mask', 'condition_mask', 'varchar', array(
    'length' => 8,
    'default' => 'AND',
  ));
  return $ret;
}