feat: Increase default project limit per org from 10 to 25 (#3409)

This commit is contained in:
Iss
2026-04-17 11:05:57 -04:00
committed by GitHub
parent 9a988ab885
commit 7d7ebdde52
3 changed files with 9 additions and 1 deletions
@@ -0,0 +1,6 @@
---
area: webapp
type: improvement
---
Increase default maximum project count per organization from 10 to 25
@@ -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[]