Created
May 5, 2021 19:07
-
-
Save vinijmoura/942e7f734e4581f7432289a39a6b744d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE [dbo].[OrganizationLevelPermissions]( | |
[SecurityNameSpace] [varchar](100) NULL, | |
[UserPrincipalName] [varchar](100) NULL, | |
[UserDisplayName] [varchar](100) NULL, | |
[GroupDisplayName] [varchar](200) NULL, | |
[GroupAccountName] [varchar](200) NULL, | |
[OrganizationLevelType] [varchar](50) NULL, | |
[OrganizationLevelCommandName] [varchar](100) NULL, | |
[OrganizationLevelCommandInternalName] [varchar](100) NULL, | |
[OrganizationLevelCommandPermission] [varchar](50) NULL | |
) ON [PRIMARY] | |
GO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment