init lserp cs 5.0
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
|
||||
/****** Object: Table [dbo].[P_SystemDesktopTab] Script Date: 05/01/2017 21:28:55 ******/
|
||||
SET ANSI_NULLS ON
|
||||
GO
|
||||
|
||||
SET QUOTED_IDENTIFIER ON
|
||||
GO
|
||||
|
||||
SET ANSI_PADDING ON
|
||||
GO
|
||||
|
||||
CREATE TABLE [dbo].[P_SystemDesktopTab](
|
||||
[id] [int] IDENTITY(1,1) NOT NULL,
|
||||
[MenuId] [varchar](50) NULL,
|
||||
[MenuName] [varchar](50) NULL,
|
||||
[OrderId] [int] NULL,
|
||||
[OperatorId] [int] NULL,
|
||||
CONSTRAINT [PK_P_SystemDesktopTab] PRIMARY KEY CLUSTERED
|
||||
(
|
||||
[id] ASC
|
||||
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
|
||||
) ON [PRIMARY]
|
||||
|
||||
GO
|
||||
|
||||
SET ANSI_PADDING OFF
|
||||
GO
|
||||
|
||||
|
||||
Reference in New Issue
Block a user