From c3610b3d80002166aee1cb07711abd977d41b91c Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Fri, 8 Jun 2018 10:26:19 -0400 Subject: [PATCH] Update field name Create script had q instead of g for one field name. --- setup/databaseScripts/create_database_V1.0.0.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup/databaseScripts/create_database_V1.0.0.sql b/setup/databaseScripts/create_database_V1.0.0.sql index 1f1382c..87ae381 100644 --- a/setup/databaseScripts/create_database_V1.0.0.sql +++ b/setup/databaseScripts/create_database_V1.0.0.sql @@ -96,7 +96,7 @@ CREATE TABLE {prefix}management ( reg_paypal_secret TINYTEXT NULL, -- PayPal Secret reg_paypal_sandbox_clientid TINYTEXT NULL, -- PayPal Client ID reg_paypal_sandbox_secret TINYTEXT NULL, -- PayPal Secret - reg_paypal_test TINYINT NULL, -- PayPal test mode - List - see + reg_paypal_test TINYINT NULL, -- PayPal test mode - List - see -- Billing settings reg_full_billing_info BOOLEAN NULL, -- Always request full billing information in checkout page regardless of the following settings reg_bill_info_req_no_charge SMALLINT NULL, -- Bitmap of fields to use in checkout for these types of payments - See billing_field in plugin.conf @@ -107,7 +107,7 @@ CREATE TABLE {prefix}management ( reg_bill_info_req_merchant_call SMALLINT NULL, -- Misc Options reg_request_hold_days SMALLINT NULL, -- Number of days past last update that a request will be retained in "CART" status. - req_account_hold_days SMALLINT NULL, -- Number of days past last update that an account will be retained when there are no requests or registrants referring to it. + reg_account_hold_days SMALLINT NULL, -- Number of days past last update that an account will be retained when there are no requests or registrants referring to it. reg_not_submitted_dialog BOOLEAN NULL, -- Flag to show page not submitted dialog boxes reg_medical_info BOOLEAN NULL, -- This site can ask for "Medical Info" - set in main category of an event reg_show_navigation_aids BOOLEAN NULL, -- No, not marine navigational aids, this enables additional text, arrows, etc to direct a user to do something specific that would not normally be required. @@ -221,7 +221,7 @@ CREATE TABLE {prefix}payment_code ( code TINYTEXT NULL, -- Text code user must enter to use amount FLOAT, -- Amount of discount if not type "Free" - Either $ amount or percent expire_date DATE NULL, -- Expiration Date - + descr TEXT NULL, PRIMARY KEY (id), INDEX (ref_dest), -- 2.17.1