mirror of
https://github.com/xCyanGrizzly/DragonsStash.git
synced 2026-09-21 05:21:43 +00:00
Additive migration (applied on deploy via prisma migrate deploy). Counts packages whose provenance was backfilled during an ingestion run. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
6 lines
299 B
SQL
6 lines
299 B
SQL
-- AlterTable: count of packages whose provenance was backfilled during a run
|
|
-- (opportunistic cross-channel provenance backfill). Additive, non-null with a
|
|
-- default of 0 — no data change for existing rows.
|
|
ALTER TABLE "ingestion_runs"
|
|
ADD COLUMN "zipsBackfilled" INTEGER NOT NULL DEFAULT 0;
|