Skip to content

Instantly share code, notes, and snippets.

@vinijmoura
Created June 7, 2021 18:15
Show Gist options
  • Select an option

  • Save vinijmoura/99e0d6e082c068c42b7f0bd9fc094bc0 to your computer and use it in GitHub Desktop.

Select an option

Save vinijmoura/99e0d6e082c068c42b7f0bd9fc094bc0 to your computer and use it in GitHub Desktop.
CREATE TABLE [dbo].[EnvironmentsDeploys](
[TeamProjectName] [varchar](100) NULL,
[EnvironmentId] [int] NULL,
[EnvironmentName] [varchar](150) NULL,
[EnvironmentDeployDefinitionName] [varchar](100) NULL,
[EnvironmentDeployStageName] [varchar](150) NULL,
[EnvironmentDeployJobName] [varchar](150) NULL,
[EnvironmentDeployResult] [varchar](50) NULL,
[EnvironmentDeployQueueTime] [datetime] NULL,
[EnvironmentDeployStartTime] [datetime] NULL,
[EnvironmentDeployFinishTime] [datetime] NULL
) ON [PRIMARY]
GO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment