Created
August 4, 2021 18:52
-
-
Save vinijmoura/c08b3278cd3e40d8c24913f1190b1ff7 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].[DeploymentGroupReleases]( | |
[TeamProjectName] [varchar](100) NULL, | |
[ReleaseDefinitionName] [varchar](100) NULL, | |
[EnvironmentName] [varchar](150) NULL, | |
[DeploymentPhaseName] [varchar](150) NULL, | |
[DeploymentGroupName] [varchar](150) NULL, | |
[MachineName] [varchar](150) NULL | |
) ON [PRIMARY] | |
GO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment