Skip to content

Commit d3938e5

Browse files
committed
Added maximumProjectCount column to Org
1 parent f6c1263 commit d3938e5

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
-- AlterTable
2+
ALTER TABLE "public"."Organization"
3+
ADD COLUMN "maximumProjectCount" INTEGER NOT NULL DEFAULT 10;

internal-packages/database/prisma/schema.prisma

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,8 @@ model Organization {
204204
205205
featureFlags Json?
206206
207+
maximumProjectCount Int @default(10)
208+
207209
projects Project[]
208210
members OrgMember[]
209211
invites OrgMemberInvite[]

0 commit comments

Comments
 (0)