From a66003e3db8b78d54af9c8e72083069f689188bf Mon Sep 17 00:00:00 2001 From: zhangqi7131 Date: Mon, 29 Jul 2024 10:02:30 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=95=B0=E6=8D=AE=E5=BA=93?= =?UTF-8?q?=E8=A1=A8=E6=96=87=E4=BB=B6STS=5FTable.sql?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- STS_Table.sql | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 STS_Table.sql diff --git a/STS_Table.sql b/STS_Table.sql new file mode 100644 index 0000000..d466433 --- /dev/null +++ b/STS_Table.sql @@ -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 +