chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:32:57 +08:00
commit cd420f9332
4811 changed files with 884702 additions and 0 deletions
@@ -0,0 +1,14 @@
-- CreateTable
CREATE TABLE "JobRunAutoYieldExecution" (
"id" TEXT NOT NULL,
"runId" TEXT NOT NULL,
"timeRemaining" INTEGER NOT NULL,
"timeElapsed" INTEGER NOT NULL,
"limit" INTEGER NOT NULL,
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
CONSTRAINT "JobRunAutoYieldExecution_pkey" PRIMARY KEY ("id")
);
-- AddForeignKey
ALTER TABLE "JobRunAutoYieldExecution" ADD CONSTRAINT "JobRunAutoYieldExecution_runId_fkey" FOREIGN KEY ("runId") REFERENCES "JobRun"("id") ON DELETE CASCADE ON UPDATE CASCADE;