From 8e06c9d576c4c4f7081623622e3b58f31d25aa1a Mon Sep 17 00:00:00 2001 From: jason Date: Sat, 7 Mar 2026 21:30:47 -0600 Subject: [PATCH] feat: add acknowledged_by and acknowledged_date columns to violations schema --- db/schema.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/db/schema.sql b/db/schema.sql index 3bcc928..8129bb3 100755 --- a/db/schema.sql +++ b/db/schema.sql @@ -23,6 +23,8 @@ CREATE TABLE IF NOT EXISTS violations ( negated_at DATETIME, prior_active_points INTEGER, -- snapshot at time of logging prior_tier_label TEXT, -- optional human-readable tier + acknowledged_by TEXT, -- employee name who acknowledged receipt + acknowledged_date TEXT, -- date of acknowledgment (YYYY-MM-DD) created_at DATETIME DEFAULT CURRENT_TIMESTAMP );