Adding commitee flag

This commit is contained in:
2014-05-14 17:44:45 +10:00
parent bbcb28cfc7
commit 71772edbd5
6 changed files with 143 additions and 50 deletions

View File

@@ -300,6 +300,15 @@ function booking_update_7213() {
db_change_field('booking_person', 'booking_amount_refunded', 'booking_refund_due', $spec);
}
/**
* Add flag to indicate committee member
*/
function booking_update_7214() {
$spec = array('type' => 'varchar', 'length' => '1', 'not null' => FALSE, 'default' => 'N');
db_add_field('booking_person', 'booking_committee_member', $spec);
}
/**
* Implementation of hook_install().
*/