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 7063b53 commit c5cb918Copy full SHA for c5cb918
apps/cli/src/helpers/core/post-installation.ts
@@ -252,6 +252,14 @@ async function getDatabaseInstructions(
252
}
253
254
if (serverDeploy === "wrangler" && dbSetup === "d1") {
255
+ if (orm === "prisma" && _runtime === "workers") {
256
+ instructions.push(
257
+ `${pc.yellow(
258
+ "WARNING:",
259
+ )} Prisma + D1 on Workers with Wrangler has migration issues.
260
+ Consider using Alchemy deploy instead of Wrangler for D1 projects.`,
261
+ );
262
+ }
263
const packageManager = runCmd === "npm run" ? "npm" : runCmd || "npm";
264
265
instructions.push(
0 commit comments