chore(cli): Update prisma setup options labels and hints

This commit is contained in:
Aman Varshney
2025-07-23 23:44:04 +05:30
parent 9079964676
commit 31be802e7e
2 changed files with 8 additions and 3 deletions

View File

@@ -213,15 +213,15 @@ export async function setupPrismaPostgres(config: ProjectConfig) {
{
label: "Quick setup with create-db",
value: "create-db",
hint: "Fastest, automated database creation",
hint: "Fastest, automated database creation (no auth)",
},
];
if (orm === "prisma") {
setupOptions.push({
label: "Custom setup with Prisma Console",
label: "Custom setup with Prisma Init",
value: "custom",
hint: "More control - use existing Prisma account",
hint: "More control (requires auth)",
});
}