Advertisement
daxruiz

datos

Feb 20th, 2023
666
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 1.58 KB | None | 0 0
  1. USE [NectarSSO]
  2. GO
  3. SET IDENTITY_INSERT [dbo].[Reports] ON
  4. GO
  5. INSERT [dbo].[Reports] ([ReportId], [ReportTypeId], [Name], [Description], [Url], [Image], [StatusId]) VALUES (1, 1, N'Modulo 1', N'Modulo 1', N'', N'', 1)
  6. GO
  7. INSERT [dbo].[Reports] ([ReportId], [ReportTypeId], [Name], [Description], [Url], [Image], [StatusId]) VALUES (2, 2, N'Sub modulo 1', N'Sub modulo 1', N'', N'', 1)
  8. GO
  9. INSERT [dbo].[Reports] ([ReportId], [ReportTypeId], [Name], [Description], [Url], [Image], [StatusId]) VALUES (3, 1, N'Modulo 2', N'Modulo 2', N'', N'', 1)
  10. GO
  11. INSERT [dbo].[Reports] ([ReportId], [ReportTypeId], [Name], [Description], [Url], [Image], [StatusId]) VALUES (4, 2, N'Sub modulo 2', N'Sub modulo 2', N'', N'', 1)
  12. GO
  13. INSERT [dbo].[Reports] ([ReportId], [ReportTypeId], [Name], [Description], [Url], [Image], [StatusId]) VALUES (5, 3, N'Aprobar sub 1', N'Aprobar sub 1', N'', N'', 1)
  14. GO
  15. SET IDENTITY_INSERT [dbo].[Reports] OFF
  16. GO
  17. INSERT [dbo].[ConfigUserPrivileges] ([UserName], [ReportId], [EnableView], [EnableEdit]) VALUES (N'[email protected]', 1, 1, 1)
  18. GO
  19. INSERT [dbo].[ConfigUserPrivileges] ([UserName], [ReportId], [EnableView], [EnableEdit]) VALUES (N'[email protected]', 2, 1, 1)
  20. GO
  21. INSERT [dbo].[ConfigUserPrivileges] ([UserName], [ReportId], [EnableView], [EnableEdit]) VALUES (N'[email protected]', 5, 1, 1)
  22. GO
  23. INSERT [dbo].[ReportGroups] ([ReportId], [ReportChildId], [POSITION]) VALUES (1, 2, 1)
  24. GO
  25. INSERT [dbo].[ReportGroups] ([ReportId], [ReportChildId], [POSITION]) VALUES (2, 5, 1)
  26. GO
  27. INSERT [dbo].[ReportGroups] ([ReportId], [ReportChildId], [POSITION]) VALUES (3, 4, 1)
  28. GO
  29.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement