修改脚本BUG:默认组1更改为Admin

This commit is contained in:
Argo-Lenovo 2016-11-12 21:33:27 +08:00
parent b0e083b044
commit 4e2a5f3e47
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ SET IDENTITY_INSERT [dbo].[Navigations] OFF
DELETE FROM GROUPS WHERE ID = 1
SET IDENTITY_INSERT [dbo].[Groups] ON
INSERT [dbo].[Groups] ([ID], [GroupName], [Description]) VALUES (1, 1, N'系统默认组')
INSERT [dbo].[Groups] ([ID], [GroupName], [Description]) VALUES (1, 'Admin', N'系统默认组')
SET IDENTITY_INSERT [dbo].[Groups] OFF
DELETE FROM Roles where ID in (1, 2)