function userpoints_update_8 in User Points 6
Same name and namespace in other branches
- 5.3 userpoints.install \userpoints_update_8()
File
- ./
userpoints.install, line 239
Code
function userpoints_update_8() {
$ret = array();
db_change_field($ret, 'userpoints_txn', 'tid', 'tid', array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
'length' => 11,
));
db_change_field($ret, 'userpoints', 'tid', 'tid', array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
'length' => 11,
));
return $ret;
}