Merge branch 'master' of github.com:Kononnable/typeorm-model-generator

This commit is contained in:
Kononnable 2019-08-08 22:24:36 +02:00
commit 1b8d561ec5
2 changed files with 4 additions and 3 deletions

View File

@ -43,8 +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
-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,