From 84a340a064017587dde0d8d4db346117e6dcb985 Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 16 Jul 2020 10:23:56 +0000 Subject: [PATCH] Update: Don't throw an error if the target field already exists --- update.php | 1 + 1 file changed, 1 insertion(+) diff --git a/update.php b/update.php index 83011108b..1448d818c 100644 --- a/update.php +++ b/update.php @@ -513,6 +513,7 @@ function update_1351() function pre_update_1354() { if (DBStructure::existsColumn('contact', ['ffi_keyword_blacklist']) + && !DBStructure::existsColumn('contact', ['ffi_keyword_denylist']) && !DBA::e("ALTER TABLE `contact` CHANGE `ffi_keyword_blacklist` `ffi_keyword_denylist` text null")) { return Update::FAILED; }