feat: Increase default project limit per org from 10 to 25 (#3409)
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
---
|
||||
area: webapp
|
||||
type: improvement
|
||||
---
|
||||
|
||||
Increase default maximum project count per organization from 10 to 25
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
-- AlterTable
|
||||
ALTER TABLE "public"."Organization" ALTER COLUMN "maximumProjectCount" SET DEFAULT 25;
|
||||
@@ -218,7 +218,7 @@ model Organization {
|
||||
|
||||
featureFlags Json?
|
||||
|
||||
maximumProjectCount Int @default(10)
|
||||
maximumProjectCount Int @default(25)
|
||||
|
||||
projects Project[]
|
||||
members OrgMember[]
|
||||
|
||||
Reference in New Issue
Block a user