docs: fix migrations

This commit is contained in:
Shahed Nasser
2022-05-30 10:51:06 +03:00
committed by GitHub
parent 269cbafe43
commit 903f5982c2
+1 -1
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