function votingapi_update_8 in Voting API 6
Same name and namespace in other branches
- 5 votingapi.install \votingapi_update_8()
- 6.2 votingapi.install \votingapi_update_8()
File
- ./
votingapi.install, line 186
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;
}