Skip to content

Commit 93df4d6

Browse files
committed
migration test
1 parent 9cd2acc commit 93df4d6

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
-- AlterTable
2+
ALTER TABLE "Project" ALTER COLUMN "autoApproveFeature" SET DEFAULT true;

prisma/schema.prisma

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ model Project {
3434
maxBranchLifetime Int @default(30)
3535
updatedAt DateTime @updatedAt
3636
createdAt DateTime @default(now())
37-
autoApproveFeature Boolean @default(false)
37+
autoApproveFeature Boolean @default(true)
3838
imageComparison ImageComparison @default(pixelmatch)
3939
imageComparisonConfig String @default("{ \"threshold\": 0.1, \"ignoreAntialiasing\": true, \"allowDiffDimensions\": false }")
4040
builds Build[]

0 commit comments

Comments
 (0)