Added reserve leader

This commit is contained in:
2014-02-11 15:17:26 +11:00
parent fa2fb84f0e
commit 7c252d4ff6
5 changed files with 105 additions and 40 deletions

View File

@@ -265,6 +265,14 @@ function booking_update_7208() {
db_change_field('booking_person', 'booking_welfare_required', 'booking_welfare_required', $spec);
}
/**
* Add field for reserve leader
*/
function booking_update_7209() {
$spec = array('type' => 'varchar', 'length' => '1', 'not null' => FALSE);
db_add_field( 'booking_studygroup_mapping', 'booking_is_reserveleader', $spec);
}
/**
* Implementation of hook_install().
*/