You are here

function votingapi_update_8 in Voting API 5

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

File

./votingapi.install, line 251

Code

function votingapi_update_8() {

  // whoops. mis-named column.
  $ret = array();
  $ret[] = update_sql("ALTER TABLE {votingapi_action_set} CHANGE criteria_mask condition_mask varchar(8) DEFAULT 'AND';");
  return $ret;
}