function userpoints_update_5 in User Points 5
Same name and namespace in other branches
- 5.3 userpoints.install \userpoints_update_5()
- 5.2 userpoints.install \userpoints_update_5()
- 6 userpoints.install \userpoints_update_5()
File
- ./
userpoints.install, line 110
Code
function userpoints_update_5() {
$ret = array();
switch ($GLOBALS['db_type']) {
case 'mysql':
case 'mysqli':
// Add the reference column and its index
$ret[] = update_sql("ALTER TABLE {userpoints_txn} ADD COLUMN reference VARCHAR(128) AFTER description");
$ret[] = update_sql("ALTER TABLE {userpoints_txn} ADD INDEX reference (reference )");
break;
}
return $ret;
}