a789495a98
FreeBSD Smoke / FreeBSD Smoke (x86_64) (push) Has been cancelled
CI / Quality Guardrails (push) Has been cancelled
CI / Build & Test (macos-latest) (push) Has been cancelled
CI / Build & Test (ubuntu-latest) (push) Has been cancelled
CI / Build & Test (windows-latest) (push) Has been cancelled
CI / Format (push) Has been cancelled
CI / PowerShell Syntax (push) Has been cancelled
CI / Windows Cross-Target Check (Linux) (push) Has been cancelled
11 lines
481 B
SQL
11 lines
481 B
SQL
-- Privacy-safe website performance and error classifications.
|
|
--
|
|
-- web_vital stores only a bounded standard metric name/value/rating tuple.
|
|
-- web_error stores only a coarse error kind. Error messages, stacks, and URLs
|
|
-- are intentionally not represented in the schema.
|
|
|
|
ALTER TABLE web_details ADD COLUMN metric_name TEXT;
|
|
ALTER TABLE web_details ADD COLUMN metric_value REAL;
|
|
ALTER TABLE web_details ADD COLUMN rating TEXT;
|
|
ALTER TABLE web_details ADD COLUMN error_kind TEXT;
|