Skip to content

Commit 4814455

Browse files
[D1] fix console output for wrangler d1 migrations create (#7197)
* [D1] fix console output for `wrangler d1 migrations create` * add changeset
1 parent f1dc739 commit 4814455

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changeset/new-adults-float.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"wrangler": patch
3+
---
4+
5+
fix console output for `wrangler d1 migrations create`

packages/wrangler/src/d1/migrations/create.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export const CreateHandler = withConfig<CreateHandlerOptions>(
5555

5656
logger.log(`✅ Successfully created Migration '${newMigrationName}'!\n`);
5757
logger.log(`The migration is available for editing here`);
58-
logger.log(`${migrationsPath}/{newMigrationName}`);
58+
logger.log(`${migrationsPath}/${newMigrationName}`);
5959
}
6060
);
6161

0 commit comments

Comments
 (0)