chore: add unknown status to schema and update porting report

This commit is contained in:
Joseph Doherty
2026-02-27 05:27:47 -05:00
parent 0c9eb2a06c
commit 9e2d763741
3 changed files with 40 additions and 3 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', 'deferred')),
CHECK (status IN ('not_started', 'stub', 'complete', 'verified', 'n_a', 'deferred', 'unknown')),
dotnet_project TEXT,
dotnet_class TEXT,
dotnet_method TEXT,
@@ -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', 'deferred')),
CHECK (status IN ('not_started', 'stub', 'complete', 'verified', 'n_a', 'deferred', 'unknown')),
dotnet_project TEXT,
dotnet_class TEXT,
dotnet_method TEXT,