Would changing the role id effect the encrypted role ids here?
SET IDENTITY_INSERT [dbo].[DSC_Template] OFF
INSERT INTO [dbo].[aspnet_Roles] ([RoleId], [ApplicationId], [RoleName], [LoweredRoleName], [Description]) VALUES (N'7924366a-810b-4e2b-8501-80afc387522a', N'0d663bb4-8150-479b-880d-cca0342f9e35', N'OrderManager', N'ordermanager', NULL)
INSERT INTO [dbo].[aspnet_Roles] ([RoleId], [ApplicationId], [RoleName], [LoweredRoleName], [Description]) VALUES (N'960b8a65-ee70-46f7-af82-42304434d8e8', N'0d663bb4-8150-479b-880d-cca0342f9e35', N'ProductManager', N'productmanager', NULL)
SET IDENTITY_INSERT [dbo].[DSC_Role] ON
INSERT INTO [dbo].[DSC_Role] ([roleId], [name], [discountRate], [minOrderAmount]) VALUES (9, N'ProductManager', 0.0000, 0.0000)
INSERT INTO [dbo].[DSC_Role] ([roleId], [name], [discountRate], [minOrderAmount]) VALUES (10, N'OrderManager', 0.0000, 0.0000)
SET IDENTITY_INSERT [dbo].[DSC_Role] OFF
GO
|