Skip to content
This repository has been archived by the owner on May 9, 2019. It is now read-only.

Commit

Permalink
Merge pull request #130 from kalkie/#14_Delete_Custom_Fields
Browse files Browse the repository at this point in the history
Implements #14 being able to delete a custom field
  • Loading branch information
dubeaud committed May 30, 2015
2 parents 5cf4a3a + c53b893 commit 182cc97
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
[CustomFieldValueId] INT IDENTITY (1, 1) NOT NULL,
[IssueId] INT NOT NULL,
[CustomFieldId] INT NOT NULL,
[CustomFieldValue] NVARCHAR (MAX) NOT NULL,
[CustomFieldValue] NVARCHAR (MAX) NULL,
CONSTRAINT [PK_BugNet_ProjectCustomFieldValues] PRIMARY KEY CLUSTERED ([CustomFieldValueId] ASC),
CONSTRAINT [FK_BugNet_ProjectCustomFieldValues_BugNet_Issues] FOREIGN KEY ([IssueId]) REFERENCES [dbo].[BugNet_Issues] ([IssueId]) ON DELETE CASCADE,
CONSTRAINT [FK_BugNet_ProjectCustomFieldValues_BugNet_ProjectCustomFields] FOREIGN KEY ([CustomFieldId]) REFERENCES [dbo].[BugNet_ProjectCustomFields] ([CustomFieldId])
Expand Down

0 comments on commit 182cc97

Please sign in to comment.