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 "IntegrationResponse" (
"id" TEXT NOT NULL,
"requestId" TEXT NOT NULL,
"statusCode" INTEGER NOT NULL,
"body" JSONB NOT NULL,
"headers" JSONB NOT NULL,
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
CONSTRAINT "IntegrationResponse_pkey" PRIMARY KEY ("id")
);
-- AddForeignKey
ALTER TABLE "IntegrationResponse" ADD CONSTRAINT "IntegrationResponse_requestId_fkey" FOREIGN KEY ("requestId") REFERENCES "IntegrationRequest"("id") ON DELETE CASCADE ON UPDATE CASCADE;