We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
wrangler d1 migrations create
1 parent f1dc739 commit 4814455Copy full SHA for 4814455
.changeset/new-adults-float.md
@@ -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
@@ -55,7 +55,7 @@ export const CreateHandler = withConfig<CreateHandlerOptions>(
55
56
logger.log(`✅ Successfully created Migration '${newMigrationName}'!\n`);
57
logger.log(`The migration is available for editing here`);
58
- logger.log(`${migrationsPath}/{newMigrationName}`);
+ logger.log(`${migrationsPath}/${newMigrationName}`);
59
}
60
);
61
0 commit comments