You are here

function signup_update_6003 in Signup 6.2

Same name and namespace in other branches
  1. 6 signup.install \signup_update_6003()
  2. 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 513

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;
}