From a996b1997e2c7f69827e187ed109f2b7c236f458 Mon Sep 17 00:00:00 2001 From: stephen waite Date: Thu, 12 Oct 2023 21:40:32 -0400 Subject: [PATCH] bug: remove semicolon typos (#6926) --- sql/7_0_1-to-7_0_2_upgrade.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sql/7_0_1-to-7_0_2_upgrade.sql b/sql/7_0_1-to-7_0_2_upgrade.sql index cbecfcea9..5e456db6b 100644 --- a/sql/7_0_1-to-7_0_2_upgrade.sql +++ b/sql/7_0_1-to-7_0_2_upgrade.sql @@ -555,11 +555,11 @@ CREATE TABLE `edi_sequences` ( INSERT INTO `edi_sequences` VALUES (0); #EndIf -#IfMissingColumn x12_partners x12_client_id; +#IfMissingColumn x12_partners x12_client_id ALTER TABLE `x12_partners` ADD COLUMN `x12_client_id` tinytext; #EndIf -#IfMissingColumn x12_partners x12_client_secret; +#IfMissingColumn x12_partners x12_client_secret ALTER TABLE `x12_partners` ADD COLUMN `x12_client_secret` tinytext; #EndIf -- 2.11.4.GIT