From 9fdc391b8d92330ede7869759e98248371f0d272 Mon Sep 17 00:00:00 2001 From: Nathan Coad Date: Thu, 21 Jul 2016 09:18:26 +1000 Subject: [PATCH] fix --- booking.admin.inc | 1 + booking.install | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) 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'), );