Skip to content

Instantly share code, notes, and snippets.

@vinijmoura
Created June 30, 2021 17:39
Show Gist options
  • Select an option

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

Select an option

Save vinijmoura/247784e86ab35cff9bb76c72cb610a0d to your computer and use it in GitHub Desktop.
CREATE TABLE [dbo].[ReposAheadBehind](
[TeamProjectName] [varchar](100) NULL,
[RepositoryId] [varchar](40) NULL,
[RepositoryName] [varchar](150) NULL,
[RepositoryBranchName] [nvarchar](max) NULL,
[RepositoryBranchAheadCount] [int] NULL,
[RepositoryBranchBehindCount] [int] NULL,
[RepositoryBranchIsBaseVersion] [bit] NULL
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment