From ae8a196ea9018196e7799611f5bdd20b65c859d1 Mon Sep 17 00:00:00 2001 From: JenneJ Date: Tue, 23 Jan 2024 14:00:01 +0100 Subject: [PATCH] =?UTF-8?q?15=5FJobRunner/Updates/001=5F23=5F01=5F2024.sql?= =?UTF-8?q?=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 15_JobRunner/Updates/001_23_01_2024.sql | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 15_JobRunner/Updates/001_23_01_2024.sql diff --git a/15_JobRunner/Updates/001_23_01_2024.sql b/15_JobRunner/Updates/001_23_01_2024.sql new file mode 100644 index 0000000..ea92a17 --- /dev/null +++ b/15_JobRunner/Updates/001_23_01_2024.sql @@ -0,0 +1,10 @@ +USE DD_ECM + +IF NOT EXISTS(SELECT 1 FROM sys.columns + WHERE Name = N'FORMAT_STRING' + AND Object_ID = Object_ID(N'dbo.TBCUST_JOBRUNNER_QUERY')) +BEGIN + -- Column Exists + ALTER TABLE TBCUST_JOBRUNNER_QUERY ADD ACTIVE BIT NOT NULL DEFAULT 1 +END +GO \ No newline at end of file