All checks were successful
CI Pipeline / Rust Format Check (push) Successful in 5s
CI Pipeline / Clippy Lints (push) Successful in 52s
CI Pipeline / Rust Unit Tests (push) Successful in 1m8s
CI Pipeline / Security Audit (push) Successful in 5s
CI Pipeline / Frontend Lint & Type Check (push) Successful in 15s
CI Pipeline / Build .deb & Release (push) Has been skipped
* feat: add CRL health status schema and UI (PR 3 of 6) * fix(lint): strict equality for crl_age_seconds --------- Co-authored-by: Draco Lunaris <331325+Draco-Lunaris@users.noreply.github.com>
14 lines
633 B
SQL
14 lines
633 B
SQL
-- 021_crl_health_status.sql
|
|
-- Add CRL health status columns to the hosts table for tracking
|
|
-- Certificate Revocation List status reported by agents.
|
|
|
|
-- CRL status values: 'valid', 'expired', 'missing', 'invalid', or NULL
|
|
-- (NULL = older agent that does not report CRL status)
|
|
ALTER TABLE hosts ADD COLUMN IF NOT EXISTS crl_status TEXT;
|
|
|
|
-- Seconds since the agent's CRL was last refreshed (NULL if not reported)
|
|
ALTER TABLE hosts ADD COLUMN IF NOT EXISTS crl_age_seconds BIGINT;
|
|
|
|
-- When the agent's CRL expires / next update is due (NULL if not reported)
|
|
ALTER TABLE hosts ADD COLUMN IF NOT EXISTS crl_next_update TIMESTAMPTZ;
|