Created
November 11, 2021 16:49
-
-
Save vinijmoura/b5f2c787d150ce77696b18c7c33326ad 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].[ProcessesWorkItemsRules]( | |
[ProcessName] [varchar](100) NULL, | |
[ProcessWorkItemTypeName] [varchar](100) NULL, | |
[ProcessWorkItemTypeRuleName] [varchar](100) NULL, | |
[ProcessWorkItemTypeRuleConditionsTypes] [nvarchar](MAX) NULL, | |
[ProcessWorkItemTypeRuleConditionsFields] [nvarchar](MAX) NULL, | |
[ProcessWorkItemTypeRuleConditionsValues] [nvarchar](MAX) NULL, | |
[ProcessWorkItemTypeRuleActionsTypes] [nvarchar](MAX) NULL, | |
[ProcessWorkItemTypeRuleActionsTargetFields] [nvarchar](MAX) NULL, | |
[ProcessWorkItemTypeRuleActionsValues] [nvarchar](MAX) NULL | |
) ON [PRIMARY] | |
GO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment