From 7f223028593cff6c0223ae460f7efeb225e74c98 Mon Sep 17 00:00:00 2001 From: t Date: Thu, 30 Apr 2026 12:49:51 -0400 Subject: [PATCH] patched sla bug --- pkg/datastore/schema.sql | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pkg/datastore/schema.sql b/pkg/datastore/schema.sql index a39bc54..9ac641f 100644 --- a/pkg/datastore/schema.sql +++ b/pkg/datastore/schema.sql @@ -28,8 +28,13 @@ CREATE TABLE IF NOT EXISTS sla_policies ( ); INSERT OR IGNORE INTO sla_policies (domain, severity, days_to_triage, days_to_remediate, max_extensions) VALUES - ('Vulnerability', 'Critical', 3, 14, 1), ('Vulnerability', 'High', 3, 30, 2), - ('Privacy', 'Critical', 3, 3, 0), ('Privacy', 'High', 3, 7, 1), + ('Vulnerability', 'Critical', 3, 14, 1), + ('Vulnerability', 'High', 3, 30, 2), + ('Vulnerability', 'Medium', 7, 60, 2), + ('Vulnerability', 'Low', 14, 90, 3), + ('Vulnerability', 'Info', 30, 180, 5), + ('Privacy', 'Critical', 3, 3, 0), + ('Privacy', 'High', 3, 7, 1), ('Incident', 'Critical', 3, 1, 0); CREATE TABLE IF NOT EXISTS users (