diff --git a/booking.admin.inc b/booking.admin.inc index fad840e..0261ffb 100644 --- a/booking.admin.inc +++ b/booking.admin.inc @@ -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' diff --git a/booking.install b/booking.install index 6f3b831..e0324b9 100644 --- a/booking.install +++ b/booking.install @@ -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'), );