Skip to content

Commit

Permalink
fix: Fix column name and version (#6761)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremylong committed Jul 2, 2024
2 parents 1d6bd7a + c0da58e commit 214bdd9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/main/resources/data/initialize_mssql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ BEGIN
v4modifiedSubConfidentialityImpact, v4modifiedSubIntegrityImpact, v4modifiedSubAvailabilityImpact,
v4safety, v4automatable, v4recovery, v4valueDensity, v4vulnerabilityResponseEffort,
v4providerUrgency, v4baseScore, v4baseSeverity, v4threatScore, v4threatSeverity,
v4environmentalScore, v4environmentalSeverity, v4sourcey, v4type)
v4environmentalScore, v4environmentalSeverity, v4source, v4type)
VALUES (@cveId, @description,
@v2Severity, @v2ExploitabilityScore,
@v2ImpactScore, @v2AcInsufInfo, @v2ObtainAllPrivilege,
Expand Down Expand Up @@ -311,7 +311,7 @@ END;

GO

INSERT INTO properties(id,value) VALUES ('version','5.4');
INSERT INTO properties(id,value) VALUES ('version','5.5');

GO
/**
Expand Down

0 comments on commit 214bdd9

Please sign in to comment.