From d29f989c22dc3c6b8fcb4245460332d37ea84610 Mon Sep 17 00:00:00 2001 From: Jeremy Long Date: Tue, 19 Nov 2013 21:04:16 -0500 Subject: [PATCH] added drop table if exists settings Former-commit-id: 5ea0128271f3a7e2985eadd330bfa02c4db21dc3 --- dependency-check-core/src/main/resources/data/initialize.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/dependency-check-core/src/main/resources/data/initialize.sql b/dependency-check-core/src/main/resources/data/initialize.sql index a5c2e04b5..1690c282a 100644 --- a/dependency-check-core/src/main/resources/data/initialize.sql +++ b/dependency-check-core/src/main/resources/data/initialize.sql @@ -8,6 +8,7 @@ DROP TABLE IF EXISTS vulnerability; DROP TABLE IF EXISTS reference; DROP TABLE IF EXISTS cpeEntry; DROP TABLE IF EXISTS software; +DROP TABLE IF EXISTS settings; CREATE TABLE settings (id varchar(50) PRIMARY KEY, value varchar(200));