Phase 3: Add filmstrip column to DB and update runner

This commit is contained in:
2025-12-28 10:29:40 +11:00
parent 039e126d9a
commit 9cd5cac287
3 changed files with 39 additions and 4 deletions

View File

@@ -0,0 +1,6 @@
-- Add filmstrip column to test_results table
ALTER TABLE test_results
ADD COLUMN filmstrip JSONB DEFAULT '[]'::jsonb;
-- Comment on column
COMMENT ON COLUMN test_results.filmstrip IS 'Array of filmstrip screenshots/thumbnails from Lighthouse';