Skip to content

Commit

Permalink
[D1] fix console output for wrangler d1 migrations create (#7197)
Browse files Browse the repository at this point in the history
* [D1] fix console output for `wrangler d1 migrations create`

* add changeset
  • Loading branch information
michelheusschen authored Nov 13, 2024
1 parent f1dc739 commit 4814455
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/new-adults-float.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"wrangler": patch
---

fix console output for `wrangler d1 migrations create`
2 changes: 1 addition & 1 deletion packages/wrangler/src/d1/migrations/create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export const CreateHandler = withConfig<CreateHandlerOptions>(

logger.log(`✅ Successfully created Migration '${newMigrationName}'!\n`);
logger.log(`The migration is available for editing here`);
logger.log(`${migrationsPath}/{newMigrationName}`);
logger.log(`${migrationsPath}/${newMigrationName}`);
}
);

Expand Down

0 comments on commit 4814455

Please sign in to comment.