From dd63cb6b8ee5b3324c8902b7f189b22a03b0a335 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Mon, 17 Jun 2019 15:01:11 +0100 Subject: [PATCH] Bug 22563: (QA follow-up) Correction to DB update Signed-off-by: Martin Renvoize Signed-off-by: Tomas Cohen Arazi Signed-off-by: Martin Renvoize --- installer/data/mysql/atomicupdate/bug_22563.perl | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/installer/data/mysql/atomicupdate/bug_22563.perl b/installer/data/mysql/atomicupdate/bug_22563.perl index 1c27e04..e8176f7 100644 --- a/installer/data/mysql/atomicupdate/bug_22563.perl +++ b/installer/data/mysql/atomicupdate/bug_22563.perl @@ -51,7 +51,7 @@ if ( CheckVersion($DBversion) ) { UPDATE accountlines SET - accounttype = 'LOST', + accounttype = 'LOST' WHERE accounttype = 'L'; }); @@ -60,7 +60,7 @@ if ( CheckVersion($DBversion) ) { UPDATE accountlines SET - accounttype = 'LOST_RETURNED', + accounttype = 'LOST_RETURNED' WHERE accounttype = 'CR'; }); -- 1.7.2.5