]> source.dussan.org Git - rspamd.git/commitdiff
[FIX] Clickhouse Migrations SQL Syntax Error 3494/head
authorventulis <72085617+ventulis@users.noreply.github.com>
Tue, 29 Sep 2020 14:30:13 +0000 (16:30 +0200)
committerventulis <72085617+ventulis@users.noreply.github.com>
Tue, 29 Sep 2020 14:30:13 +0000 (16:30 +0200)
src/plugins/lua/clickhouse.lua

index 2809570081c02a314388469a4542e993d1cbd5c7..c9d0c71cced3b257ac1d9c27897dc69dc5065dc0 100644 (file)
@@ -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)]],