feat: add acknowledged_by and acknowledged_date columns to violations schema

This commit is contained in:
2026-03-07 21:30:47 -06:00
parent 725dfa2963
commit 8e06c9d576

View File

@@ -23,6 +23,8 @@ CREATE TABLE IF NOT EXISTS violations (
negated_at DATETIME, negated_at DATETIME,
prior_active_points INTEGER, -- snapshot at time of logging prior_active_points INTEGER, -- snapshot at time of logging
prior_tier_label TEXT, -- optional human-readable tier 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 created_at DATETIME DEFAULT CURRENT_TIMESTAMP
); );