We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc94d12 commit 26182f8Copy full SHA for 26182f8
2 files changed
internal-packages/database/prisma/migrations/20250923192901_add_canceled_at_to_deployments/migration.sql
@@ -0,0 +1,2 @@
1
+ALTER TABLE "public"."WorkerDeployment" ADD COLUMN "canceledAt" TIMESTAMP(3),
2
+ADD COLUMN "canceledReason" TEXT;
internal-packages/database/prisma/schema.prisma
@@ -1772,6 +1772,9 @@ model WorkerDeployment {
1772
failedAt DateTime?
1773
errorData Json?
1774
1775
+ canceledAt DateTime?
1776
+ canceledReason String?
1777
+
1778
// This is GitMeta type
1779
git Json?
1780
0 commit comments