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 9a988ab commit 7d7ebddCopy full SHA for 7d7ebdd
3 files changed
.server-changes/increase-default-project-limit.md
@@ -0,0 +1,6 @@
1
+---
2
+area: webapp
3
+type: improvement
4
5
+
6
+Increase default maximum project count per organization from 10 to 25
internal-packages/database/prisma/migrations/20260417080903_increase_default_maximum_project_count/migration.sql
@@ -0,0 +1,2 @@
+-- AlterTable
+ALTER TABLE "public"."Organization" ALTER COLUMN "maximumProjectCount" SET DEFAULT 25;
internal-packages/database/prisma/schema.prisma
@@ -218,7 +218,7 @@ model Organization {
218
219
featureFlags Json?
220
221
- maximumProjectCount Int @default(10)
+ maximumProjectCount Int @default(25)
222
223
projects Project[]
224
members OrgMember[]
0 commit comments