Last active
February 16, 2022 22:53
-
-
Save vinijmoura/5b5f2c583007b44ef3a808ac1b7553a2 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].[RepositoriesBranchesAheadBehind]( | |
RepositoryId [varchar](20) NOT NULL, | |
RepositoryName [varchar](100) NOT NULL, | |
RepositoryBranchName [varchar](50) NOT NULL, | |
RepositoryBranchAheadCount [int] NULL, | |
RepositoryBranchBehindCount [int] NULL, | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment