migrate to new git
This commit is contained in:
27
data/shuwen_table.sql
Normal file
27
data/shuwen_table.sql
Normal file
@@ -0,0 +1,27 @@
|
||||
USE [17168erp]
|
||||
GO
|
||||
|
||||
/****** Object: Table [dbo].[ShuWen] Script Date: 2025/5/6 下午 12:01:21 ******/
|
||||
SET ANSI_NULLS ON
|
||||
GO
|
||||
|
||||
SET QUOTED_IDENTIFIER ON
|
||||
GO
|
||||
|
||||
CREATE TABLE [dbo].[ShuWen](
|
||||
[ID] [int] IDENTITY(1,1) NOT NULL,
|
||||
[ActivityNum] [int] NOT NULL,
|
||||
[CreateTime] [datetime2](7) NOT NULL,
|
||||
[UpdateTime] [datetime2](7) NOT NULL,
|
||||
[ShuWenList] [nvarchar](max) NULL,
|
||||
[IsGenerating] [bit] NOT NULL,
|
||||
PRIMARY KEY CLUSTERED
|
||||
(
|
||||
[ID] 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] TEXTIMAGE_ON [PRIMARY]
|
||||
GO
|
||||
|
||||
ALTER TABLE [dbo].[ShuWen] ADD DEFAULT ((0)) FOR [IsGenerating]
|
||||
GO
|
||||
|
||||
Reference in New Issue
Block a user