Skip to content

Commit

Permalink
fix capitalisation of database creation message
Browse files Browse the repository at this point in the history
  • Loading branch information
dcousens committed Aug 9, 2024
1 parent 2569f79 commit 3f4d613
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/scripts/dev.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ export async function dev (
const paths = system.getPaths(cwd)
if (dbPush) {
const created = await createDatabase(system.config.db.url, path.dirname(paths.schema.prisma))
if (created) console.log(`✨ database created`)
if (created) console.log(`✨ Database created`)

const migration = await withMigrate(paths.schema.prisma, system, async (m) => {
// what does force on migrate.engine.schemaPush mean?
Expand Down

0 comments on commit 3f4d613

Please sign in to comment.