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;

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;

View File

@@ -1,12 +1,12 @@
{{#if (eq dbSetup "prisma-postgres")}}
// import "dotenv/config"; uncomment this to load .env
{{else}}
{{#unless (eq dbSetup "prisma-postgres")}}
import "dotenv/config";
{{/if}}
{{/unless}}
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;

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;