Skip to content

Instantly share code, notes, and snippets.

@vinijmoura
Created May 2, 2021 20:20
Show Gist options
  • Select an option

  • Save vinijmoura/cd6a41dadb65af341d1b5e4df982b5ea to your computer and use it in GitHub Desktop.

Select an option

Save vinijmoura/cd6a41dadb65af341d1b5e4df982b5ea to your computer and use it in GitHub Desktop.
CREATE TABLE [dbo].[ProjectLevelPermissions](
[TeamProjectName] [varchar](100) NULL,
[SecurityNameSpace] [varchar](100) NULL,
[UserPrincipalName] [varchar](100) NULL,
[UserDisplayName] [varchar](100) NULL,
[GroupDisplayName] [varchar](200) NULL,
[GroupAccountName] [varchar](200) NULL,
[ProjectLevelType] [varchar](50) NULL,
[ProjectLevelCommandName] [varchar](100) NULL,
[ProjectLevelCommandInternalName] [varchar](100) NULL,
[ProjectLevelCommandPermission] [varchar](50) NULL
) ON [PRIMARY]
GO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment