update ascii art

This commit is contained in:
Aman Varshney
2025-02-20 21:32:38 +05:30
parent ec71d8941c
commit ba771041cb
4 changed files with 19 additions and 23 deletions

View File

@@ -14,7 +14,6 @@ export function generateReproducibleCommand(config: ProjectConfig): string {
flags.push("-y");
}
// Handle database flag
if (config.database !== DEFAULT_CONFIG.database) {
if (config.database === "none") {
flags.push("--no-database");
@@ -23,7 +22,6 @@ export function generateReproducibleCommand(config: ProjectConfig): string {
}
}
// Handle ORM flag only if database is not "none"
if (config.database !== "none" && config.orm !== DEFAULT_CONFIG.orm) {
flags.push(config.orm === "drizzle" ? "--drizzle" : "--prisma");
}