Alle Updates in MainCreateScripts integriert

This commit is contained in:
2023-07-20 08:54:06 +02:00
parent 7669443af5
commit c11a62c129
223 changed files with 42153 additions and 41336 deletions

View File

@@ -0,0 +1,9 @@
UPDATE TBDD_MODULES SET DB_VERSION = '2.5.0.1' where NAME = 'Global-Indexer'
GO
IF COL_LENGTH('TBGI_HISTORY','ADDED_WHERE') IS NULL
BEGIN
ALTER TABLE TBGI_HISTORY ADD ADDED_WHERE VARCHAR(100) NULL
END
ELSE
PRINT 'COL ADDED_WHERE is existing'
GO