fix: mark server module features as deferred, not verified

Add 'deferred' to features.status CHECK constraint (table migration).
Server module (module_id=8) 3394 features: verified → deferred.
These features have ported implementations but their unit tests are
deferred pending a runnable .NET server end-to-end.
Small module features (modules 1-7, 9-12) remain verified.
This commit is contained in:
Joseph Doherty
2026-02-26 21:53:53 -05:00
parent 1c5921d2c1
commit 11ec33da53
4 changed files with 40 additions and 4 deletions

View File

@@ -33,7 +33,7 @@ CREATE TABLE IF NOT EXISTS features (
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,