This commit is contained in:
Nathan Coad
2016-07-21 09:18:26 +10:00
parent aef96242a8
commit 9fdc391b8d
2 changed files with 3 additions and 2 deletions

View File

@@ -245,6 +245,7 @@ function booking_admin() {
'#description' => 'Percentage of transaction charged as stripe fee for transactions that include currency conversion, currently 2.9% in Australia',
);
//feature settings
$form['features'] = array(
'#type' => 'fieldset',
'#title' => 'Enable/Disable Features'

View File

@@ -839,8 +839,8 @@ function booking_schema() {
'booking_buyer_email' => array('type' => 'varchar', 'length' => '200', 'not null' => FALSE),
'booking_payer_status' => array('type' => 'varchar', 'length' => '50', 'not null' => FALSE),
'booking_item_name' => array('type' => 'varchar', 'length' => '200', 'not null' => FALSE),
'booking_ipn_track_id' => array('type' => 'varchar', 'length' => '200', 'not null' => FALSE)),
'booking_stripe_token' => array('type' => 'varchar', 'length' => '200', 'not null' => FALSE)),
'booking_ipn_track_id' => array('type' => 'varchar', 'length' => '200', 'not null' => FALSE),
'booking_stripe_token' => array('type' => 'varchar', 'length' => '200', 'not null' => FALSE),
'primary key' => array('payid'),
);