Skip to content

Commit 1dd0bcb

Browse files
committed
fixes #32, fixes #33
1 parent 9ddd9f5 commit 1dd0bcb

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

rubberduckvba.Server/Data/AnnotationsRepository.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ INSERT INTO [dbo].[Annotations] (
6161
UPDATE [dbo].[Annotations]
6262
SET [DateTimeUpdated]=GETDATE(),
6363
[TagAssetId]=@tagAssetId,
64+
[SourceUrl]=@sourceUrl,
6465
[Summary]=@summary,
6566
[Remarks]=@remarks,
6667
[JsonParameters]=@jsonParameters,

rubberduckvba.Server/Data/InspectionsRepository.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ INSERT INTO [dbo].[Inspections] (
7676
UPDATE [dbo].[Inspections]
7777
SET [DateTimeUpdated]=GETDATE(),
7878
[TagAssetId]=@tagAssetId,
79+
[SourceUrl]=@sourceUrl,
7980
[InspectionType]=@inspectionType,
8081
[DefaultSeverity]=@defaultSeverity,
8182
[Summary]=@summary,

rubberduckvba.Server/Data/QuickFixRepository.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ INSERT INTO [dbo].[QuickFixes] (
7373
UPDATE [dbo].[QuickFixes]
7474
SET [DateTimeUpdated]=GETDATE(),
7575
[TagAssetId]=@tagAssetId,
76+
[SourceUrl]=@sourceUrl,
7677
[Summary]=@summary,
7778
[Remarks]=@remarks,
7879
[CanFixMultiple]=@canFixMultiple,

0 commit comments

Comments
 (0)