feat(cli): Upgrade to Prisma 6.13.0 (#431)

This commit is contained in:
Aman Varshney
2025-07-30 00:56:24 +05:30
committed by GitHub
parent ec808ff959
commit 16c4d423dd
13 changed files with 53 additions and 44 deletions

View File

@@ -3,6 +3,8 @@ import path from "node:path";
import type { PrismaConfig } from "prisma";
export default {
earlyAccess: true,
schema: path.join("prisma", "schema"),
migrations: {
path: path.join("prisma", "migrations"),
}
} satisfies PrismaConfig;