1 changed files with 30 additions and 0 deletions
@ -0,0 +1,30 @@ |
|||
USE [TaskManagementDB] |
|||
GO |
|||
|
|||
/****** Object: Table [dbo].[STM] Script Date: 2024/7/29 9:58:25 ******/ |
|||
SET ANSI_NULLS ON |
|||
GO |
|||
|
|||
SET QUOTED_IDENTIFIER ON |
|||
GO |
|||
|
|||
CREATE TABLE [dbo].[STM]( |
|||
[Barcode] [nvarchar](50) NOT NULL, |
|||
[ScheduledTaskIndex] [nvarchar](50) NULL, |
|||
[RelatedTaskIndex] [nvarchar](50) NULL, |
|||
[TaskType] [nvarchar](50) NULL, |
|||
[JobType] [nvarchar](50) NULL, |
|||
[StartPoint] [nvarchar](50) NULL, |
|||
[StartLocation] [nvarchar](50) NULL, |
|||
[EndPoint] [nvarchar](50) NULL, |
|||
[EndLocation] [nvarchar](50) NULL, |
|||
[TaskStatus] [nvarchar](50) NULL, |
|||
[StartTime] [nvarchar](50) NULL, |
|||
[ErrorInformation] [nvarchar](50) NULL, |
|||
CONSTRAINT [PK_STM] PRIMARY KEY CLUSTERED |
|||
( |
|||
[Barcode] ASC |
|||
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] |
|||
) ON [PRIMARY] |
|||
GO |
|||
|
Loading…
Reference in new issue