Skip to content

Instantly share code, notes, and snippets.

@vinijmoura
Created November 11, 2021 16:49
Show Gist options
  • Save vinijmoura/b5f2c787d150ce77696b18c7c33326ad to your computer and use it in GitHub Desktop.
Save vinijmoura/b5f2c787d150ce77696b18c7c33326ad to your computer and use it in GitHub Desktop.
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