You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
867 B
30 lines
867 B
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
|
|
|