From 89e86f049aa0db4c9e2e5c89a3ccbdda6c9a903c Mon Sep 17 00:00:00 2001 From: Milo Hyben Date: Wed, 3 Apr 2024 16:47:55 +1100 Subject: [PATCH] Setting system_versioning_alter_history when ALTER table is called. (#722) --- db/project.xml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/db/project.xml b/db/project.xml index 25c4be394..9cb53a616 100644 --- a/db/project.xml +++ b/db/project.xml @@ -1181,7 +1181,11 @@ - ALTER TABLE analysis_runner MODIFY COLUMN config_path VARCHAR(255) NULL; + + SET @@system_versioning_alter_history = 1; + ALTER TABLE analysis_runner MODIFY COLUMN config_path VARCHAR(255) NULL; + SET @@system_versioning_alter_history = 0; +