docs change

This commit is contained in:
Kononnable 2019-08-08 21:57:29 +02:00
parent 1f4cfedc38
commit e8c01bdba9
2 changed files with 4 additions and 5 deletions

View File

@ -43,10 +43,9 @@ Options:
[default: "mssql"]
-o, --output Where to place generated models
[default: "Z:\Repos\typeorm-model-generator\output"]
-s, --schema Schema name to create model from. Only for mssql and
postgres. Specify multiple schemas at once by providing
a comma separated list.
eg: -s scheme1, scheme2, scheme3
-s, --schema Schema name to create model from. Only for mssql
and postgres. You can pass multiple values
separted by comma eg. -s scheme1,scheme2,scheme3
--ssl [boolean] [default: false]
--noConfig Doesn't create tsconfig.json and ormconfig.json
[boolean] [default: false]

View File

@ -102,7 +102,7 @@ function GetUtilParametersByArgs() {
.option("s", {
alias: "schema",
describe:
"Schema name to create model from. Only for mssql and postgres. You can pass multiple values separted by comma."
"Schema name to create model from. Only for mssql and postgres. You can pass multiple values separted by comma eg. -s scheme1,scheme2,scheme3"
})
.option("ssl", {
boolean: true,