Implement events api routes

This commit is contained in:
Dominic Ferrando
2026-07-16 00:55:04 -04:00
parent ee9b03796d
commit 48765b4b89
6 changed files with 225 additions and 97 deletions
@@ -16,6 +16,7 @@ export async function up(db: Kysely<any>): Promise<void> {
.addColumn("errors", "integer", (cb) => cb.notNull().defaultTo(0))
.addColumn("rate_limits", "integer", (cb) => cb.notNull().defaultTo(0))
.addColumn("has_failed", "boolean", (cb) => cb.notNull().defaultTo(false))
.addColumn("last_error", "jsonb")
.execute()
// TABLE: STANDARDS_DATASETS