docs: fix typos (#10243)

This commit is contained in:
le-harivansh 2024-01-02 11:06:14 +04:00 committed by GitHub
parent b188c1e634
commit 0f11739351
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -76,10 +76,10 @@ Before creating a new migration you need to setup your data source options prope
Here we setup two options:
- `"migrationsTableName": "migrations"` - Specify this option only if you need migration table name to be different from `"migrations"`.
- `"migrations": [/*...*/]` - list of migrations need to be loaded by TypeORM
- `"migrationsTableName": "migrations"` - Specify this option only if you need the migration table name to be different from `"migrations"`.
- `"migrations": [/*...*/]` - list of migrations that need to be loaded by TypeORM
Once you setup connection options you can create a new migration using CLI:
Once you setup the connection options you can create a new migration using CLI:
```
typeorm migration:create ./path-to-migrations-dir/PostRefactoring