increase booking_medical_conditions

This commit is contained in:
2017-08-29 08:09:51 +10:00
parent 31b98fb623
commit d023e67da5

View File

@@ -718,6 +718,14 @@ function booking_update_7247() {
_booking_node_create_mysqlview();
}
/**
* Increase maximum length of booking_medical_conditions field to 5000 characters
*/
function booking_update_7248() {
$spec = array('type' => 'varchar', 'length' => '5000', 'not null' => FALSE);
db_change_field('booking_person', 'booking_medical_conditions', 'booking_medical_conditions', $spec);
}
/**
* Implementation of hook_install().
*/