function signup_update_6003 in Signup 6
Same name and namespace in other branches
- 6.2 signup.install \signup_update_6003()
- 7 signup.install \signup_update_6003()
Add the 'count_towards_limit' field to the {signup_log} table.
http://drupal.org/node/581652 for more infomation.
File
- ./
signup.install, line 479
Code
function signup_update_6003() {
$ret = array();
$field = array(
'type' => 'int',
'not null' => TRUE,
'default' => 1,
);
db_add_field($ret, 'signup_log', 'count_towards_limit', $field);
return $ret;
}