Last active
April 27, 2021 12:27
-
-
Save vinijmoura/a621d5cdb11fba1d30fa550299814bb4 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].[GitRepositoriesPermissions]( | |
[TeamProjectName] [varchar](100) NULL, | |
[RepoName] [varchar](100) NULL, | |
[SecurityNameSpace] [varchar](100) NULL, | |
[UserPrincipalName] [varchar](100) NULL, | |
[UserDisplayName] [varchar](100) NULL, | |
[GroupDisplayName] [varchar](200) NULL, | |
[GroupAccountName] [varchar](200) NULL, | |
[GitCommandName] [varchar](100) NULL, | |
[GitCommandInternalName] [varchar](100) NULL, | |
[GitCommandPermission] [varchar](50) NULL | |
) ON [PRIMARY] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment