docs: fix create migration command

docs: fix create migration command
This commit is contained in:
Shahed Nasser
2022-05-30 11:14:04 +03:00
committed by GitHub

View File

@@ -57,7 +57,7 @@ In this section, youll learn how to create your own migrations using [Typeorm
To create a migration that makes changes to your Medusa schema, run the following command:
```bash
npx typeorm migration:create -n src/path/to/UserChanged
npx typeorm migration:create -n UserChanged --dir src/path
```
:::tip