feat(p7-01): add 'deferred' status to unit_tests schema

SQLite table recreated (no ALTER TABLE support for CHECK constraints).
porting-schema.sql updated to match. Row count unchanged at 3257.
This commit is contained in:
Joseph Doherty
2026-02-26 18:50:50 -05:00
parent 7750b46f9f
commit 08620388f1
4 changed files with 39 additions and 2 deletions

View File

@@ -54,7 +54,7 @@ CREATE TABLE IF NOT EXISTS unit_tests (
go_line_number INTEGER,
go_line_count INTEGER,
status TEXT NOT NULL DEFAULT 'not_started'
CHECK (status IN ('not_started', 'stub', 'complete', 'verified', 'n_a')),
CHECK (status IN ('not_started', 'stub', 'complete', 'verified', 'n_a', 'deferred')),
dotnet_project TEXT,
dotnet_class TEXT,
dotnet_method TEXT,