Created
November 3, 2021 17:47
-
-
Save vinijmoura/17954352bf7eb26c8d66d3b70a70bbcd 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].[LatestReleases]( | |
[TeamProjectName] [varchar](100) NULL, | |
[ReleaseDefinitionId] [varchar](40) NULL, | |
[ReleaseDefinitionName] [varchar](150) NULL, | |
[ReleaseNumber] [varchar](100) NULL, | |
[ReleaseCreatedOn] [datetime] NULL, | |
[ReleaseLink] [nvarchar](MAX) NULL, | |
[ReleaseEnvironmentName] [varchar](150) NULL, | |
[ReleaseEnvironmentResult] [varchar](50) NULL, | |
[ReleaseEnvironmentReason] [varchar](50) NULL, | |
[ReleaseEnvironmentRequestedFor] [varchar](100) NULL | |
) | |
GO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment