diff options
author | ventulis <72085617+ventulis@users.noreply.github.com> | 2020-09-29 16:30:13 +0200 |
---|---|---|
committer | ventulis <72085617+ventulis@users.noreply.github.com> | 2020-09-29 16:30:13 +0200 |
commit | 346f7c6c0e5d182ed799b3f7d716a8179ebe0407 (patch) | |
tree | 7d36d560bb7d762ee100cded222c90e28b2a7534 /src/plugins | |
parent | 80b8f0e4240445bc2e73ed5cfd205d0cb5a355ca (diff) | |
download | rspamd-346f7c6c0e5d182ed799b3f7d716a8179ebe0407.tar.gz rspamd-346f7c6c0e5d182ed799b3f7d716a8179ebe0407.zip |
[FIX] Clickhouse Migrations SQL Syntax Error
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/lua/clickhouse.lua | 2 |
1 files changed, 1 insertions, 1 deletions
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)]], |