mirror of
https://github.com/DeNNiiInc/Web-Page-Performance-Test.git
synced 2026-04-18 12:05:59 +00:00
7 lines
247 B
SQL
7 lines
247 B
SQL
-- 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';
|