Created
June 14, 2021 14:09
-
-
Save vinijmoura/704c5a10b14d85a8681f70a8e69c87db 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].[TaskGroups]( | |
| [TeamProjectName] [varchar](100) NULL, | |
| [TaskGroupId] [varchar](40) NULL, | |
| [TaskGroupName] [varchar](150) NULL, | |
| [TaskGroupIconURL] [nvarchar](max) NULL, | |
| [TaskGroupVersion] [varchar](30) NULL, | |
| [TaskGroupCategory] [varchar](30) NULL, | |
| [TaskGroupTaskDisplayName] [varchar](150) NULL, | |
| [TaskGroupTaskReferenceId] [varchar](40) NULL, | |
| [TaskGroupTaskVersionSpec] [varchar](30) NULL, | |
| [TaskGroupTaskEnabled] [bit] NULL | |
| ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] | |
| GO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment