github.com/quay/claircore@v1.5.28/datastore/postgres/migrations/matcher/08-updater-status.sql (about) 1 CREATE TABLE IF NOT EXISTS updater_status ( 2 updater_name text PRIMARY KEY, 3 last_attempt timestamp with time zone DEFAULT now(), 4 last_success timestamp with time zone, 5 last_run_succeeded bool, 6 last_attempt_fingerprint text, 7 last_error text 8 );