change song choice to freestyle text

This commit is contained in:
2017-08-29 22:48:26 +10:00
parent d568cf2043
commit 79b2b0e505
3 changed files with 29 additions and 0 deletions

View File

@@ -726,6 +726,16 @@ function booking_update_7248() {
db_change_field('booking_person', 'booking_medical_conditions', 'booking_medical_conditions', $spec);
}
/**
* Add field for attendee's freestyle text entry
*/
function booking_update_7249() {
$spec = array('type' => 'varchar', 'length' => '1000', 'not null' => FALSE);
db_add_field('booking_person', 'booking_freestyle_text', $spec);
//update the view to match the new table definition
_booking_node_create_mysqlview();
}
/**
* Implementation of hook_install().
*/