Structure Overhaul

This commit is contained in:
Paul Andrew
2022-02-11 10:31:23 +00:00
parent bf9ceef777
commit 11ce675fac
608 changed files with 19504 additions and 3 deletions

View File

@@ -0,0 +1,12 @@
CREATE TABLE [dbo].[BucketProcesses] (
[ProcessId] INT IDENTITY (1, 1) NOT NULL,
[ProcessName] VARCHAR (50) NOT NULL,
[ProcessDetails] VARCHAR (500) NULL,
[ObjectName] NVARCHAR (128) NOT NULL,
[ObjectParameters] NVARCHAR (500) NULL,
[Duration] INT CONSTRAINT [DF_BProcesses_Duration] DEFAULT ((0)) NOT NULL,
[LastUpdated] DATETIME CONSTRAINT [DF_BProcesses_LastUpdated] DEFAULT (getdate()) NOT NULL,
[Enabled] BIT CONSTRAINT [DF_BProcesses_Enabled] DEFAULT ((1)) NOT NULL,
CONSTRAINT [PK_BProcesses] PRIMARY KEY CLUSTERED ([ProcessId] ASC)
);