Add full sortof codebase: API, drain workers, frontend, schema, specs

This commit is contained in:
2026-05-04 03:27:54 +00:00
parent acda2c90f8
commit 55d3794bfb
43 changed files with 13375 additions and 53 deletions

View File

@@ -0,0 +1,7 @@
-- Track when we last successfully scraped a wsid's "Required Items" section.
-- Without this, we can't distinguish "successfully scraped, zero required
-- items" (a stable empty []) from "never scraped" (also empty {} per schema
-- default). Backfill jobs and the missing-dep auto-resolver use it to skip
-- already-known-empty pages.
ALTER TABLE workshop_meta
ADD COLUMN IF NOT EXISTS required_scraped_at TIMESTAMPTZ;