From e9ea13cdffb1a17e2ff04195da4e3ee4e02a83d7 Mon Sep 17 00:00:00 2001 From: Jeremy Long Date: Mon, 20 Jan 2014 13:17:47 -0500 Subject: [PATCH] updated db schema version to 2.9 Former-commit-id: 90194fc040d66c9c52449db849113a65aa8e9b68 --- .../src/main/resources/data/initialize_mysql.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dependency-check-core/src/main/resources/data/initialize_mysql.sql b/dependency-check-core/src/main/resources/data/initialize_mysql.sql index 808eb12db..5a89cd67c 100644 --- a/dependency-check-core/src/main/resources/data/initialize_mysql.sql +++ b/dependency-check-core/src/main/resources/data/initialize_mysql.sql @@ -34,7 +34,7 @@ CREATE INDEX idxCpeEntry ON cpeEntry(vendor, product); CREATE INDEX idxSoftwareCve ON software(cveid); CREATE INDEX idxSoftwareCpe ON software(cpeEntryId); -INSERT INTO properties(id,value) VALUES ('version','2.8'); +INSERT INTO properties(id,value) VALUES ('version','2.9'); CREATE USER 'dcuser' IDENTIFIED BY 'DC-Pass1337!'; GRANT SELECT, INSERT, DELETE, UPDATE ON dependencycheck.* TO 'dcuser'; \ No newline at end of file