From: ventulis <72085617+ventulis@users.noreply.github.com> Date: Tue, 29 Sep 2020 14:30:13 +0000 (+0200) Subject: [FIX] Clickhouse Migrations SQL Syntax Error X-Git-Tag: 2.6~5^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=346f7c6c0e5d182ed799b3f7d716a8179ebe0407;p=rspamd.git [FIX] Clickhouse Migrations SQL Syntax Error --- diff --git a/src/plugins/lua/clickhouse.lua b/src/plugins/lua/clickhouse.lua index 280957008..c9d0c71cc 100644 --- a/src/plugins/lua/clickhouse.lua +++ b/src/plugins/lua/clickhouse.lua @@ -210,7 +210,7 @@ local migrations = { [4] = { [[ALTER TABLE rspamd MODIFY COLUMN Action Enum8('reject' = 0, 'rewrite subject' = 1, 'add header' = 2, 'greylist' = 3, 'no action' = 4, 'soft reject' = 5, 'custom' = 6) DEFAULT 'no action', - ADD IF NOT EXISTS COLUMN CustomAction String AFTER Action + ADD COLUMN IF NOT EXISTS CustomAction String AFTER Action ]], -- New version [[INSERT INTO rspamd_version (Version) Values (5)]],