Add flight detail fields
This commit is contained in:
@@ -412,6 +412,23 @@ function booking_update_7221() {
|
||||
db_add_field('booking_person', 'booking_destination_country', $spec);
|
||||
}
|
||||
|
||||
/**
|
||||
* Add field for travel insurance info when collecting passport information
|
||||
*/
|
||||
function booking_update_7222() {
|
||||
$spec = array('type' => 'varchar', 'length' => '500', 'not null' => FALSE);
|
||||
db_add_field('booking_person', 'booking_travel_insurance', $spec);
|
||||
}
|
||||
|
||||
/**
|
||||
* Add fields for flight details when collecting passport information
|
||||
*/
|
||||
function booking_update_7223() {
|
||||
$spec = array('type' => 'varchar', 'length' => '500', 'not null' => FALSE);
|
||||
db_add_field('booking_person', 'booking_internal_flight_outbound', $spec);
|
||||
db_add_field('booking_person', 'booking_internal_flight_inbound', $spec);
|
||||
}
|
||||
|
||||
/**
|
||||
* Implementation of hook_install().
|
||||
*/
|
||||
@@ -442,7 +459,7 @@ $result = db_insert('booking_price')
|
||||
'booking_eventid' => 1,
|
||||
'booking_price' => '50.00',
|
||||
'booking_price_descrip' => 'Deposit',
|
||||
'booking_buttonid' => '9LMSELBEEL5W2',
|
||||
'booking_buttonid' => '',
|
||||
'booking_price_active' => 1,
|
||||
'booking_depositonly' => 1,
|
||||
))
|
||||
|
Reference in New Issue
Block a user