Files

8 lines
240 B
MySQL
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
CREATE TABLE [dbo].[DiagnosticRuns](
[Id] [bigint] IDENTITY(1,1) NOT NULL,
[DataPROUser] [nvarchar](50) NOT NULL,
[TestId] [int] NULL,
[TestName] [nvarchar](50) NOT NULL,
[PreTest] [bit] NULL,
PRIMARY KEY (Id)
) ON [PRIMARY]