Skip to content

Instantly share code, notes, and snippets.

@vinijmoura
Created June 1, 2021 22:06
Show Gist options
  • Select an option

  • Save vinijmoura/1dbabddb27555870c02212496690b4f2 to your computer and use it in GitHub Desktop.

Select an option

Save vinijmoura/1dbabddb27555870c02212496690b4f2 to your computer and use it in GitHub Desktop.
CREATE TABLE [dbo].[VariableGroups](
[TeamProjectName] [varchar](100) NULL,
[VariableGroupName] [varchar](150) NULL,
[VariableGroupType] [varchar](50) NULL,
[VariableGroupKeyVaultName] [varchar](100) NULL,
[VariableGroupVariableName] [varchar](100) NULL,
[VariableGroupVariableValue] [nvarchar](MAX) NULL
) ON [PRIMARY]
GO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment