Prvni verze

This commit is contained in:
2025-05-21 21:14:32 +02:00
commit 03ff9ebc84
147 changed files with 40100 additions and 0 deletions

View File

@ -0,0 +1,7 @@
IF OBJECT_ID(N'dbo._hdcdzapi_SQLDefs', N'U') IS NULL
CREATE TABLE dbo._hdcdzapi_SQLDefs (
ID int IDENTITY(1, 1) NOT NULL,
SrcName sysname NOT NULL,
DatPorizeni DATETIME NOT NULL DEFAULT GETDATE(),
CONSTRAINT PK__hdcdzapi_SQLDefs PRIMARY KEY CLUSTERED (ID DESC) WITH ( PAD_INDEX = OFF, IGNORE_DUP_KEY = OFF, STATISTICS_NORECOMPUTE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON)
)