Last active
September 22, 2021 22:51
-
-
Save vinijmoura/6e03e2ea0a2a36025c05fa047fd6eb34 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].[ProjectStats]( | |
[TeamProjectName] [varchar](200) NOT NULL, | |
[TeamProjectCountWorkItemCreated] [smallint] NOT NULL, | |
[TeamProjectCountWorkItemCompleted] [smallint] NOT NULL, | |
[TeamProjectCountCommitsPushed] [smallint] NOT NULL, | |
[TeamProjectCountPRsCreated] [smallint] NOT NULL, | |
[TeamProjectCountPRsCompleted] [smallint] NOT NULL, | |
[TeamProjectCountBuilds] [smallint] NOT NULL, | |
[TeamProjectCountReleases] [smallint] NOT NULL | |
) | |
GO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment