support github pings

This commit is contained in:
nora 2025-11-10 20:25:13 +01:00
parent 112420d224
commit b71f565e5b
11 changed files with 772 additions and 13 deletions

View file

@ -0,0 +1,10 @@
-- Add migration script here
CREATE TABLE notification_issues(
"issue_number" INTEGER PRIMARY KEY,
"status" TEXT NOT NULL, -- open/closed
"first_failed_nightly" TEXT NOT NULL,
"target" TEXT NOT NULL
) STRICT;
CREATE INDEX notification_issues_target on notification_issues("target", "status");