readme updates
This commit is contained in:
parent
ddec66a863
commit
996761b5ad
@ -33,6 +33,8 @@ Options:
|
||||
-e, --engine Database engine.
|
||||
[choices: "mssql", "postgres", "mysql", "mariadb"] [default: "mssql"]
|
||||
-o, --output Where to place generated models.
|
||||
-s, --schema Schema name to create model from. Only for mssql and postgres.
|
||||
--ssl [boolean] [default: false]
|
||||
```
|
||||
### Examples
|
||||
|
||||
@ -45,12 +47,12 @@ Options:
|
||||
```
|
||||
npx typeorm-model-generator -h localhost -d tempdb -u sa -x !Passw0rd -e mssql -o .\
|
||||
````
|
||||
* Creating model from local Postgres database
|
||||
* Creating model from local Postgres database, public schema with ssl connection
|
||||
* Global module
|
||||
```
|
||||
typeorm-model-generator -h localhost -d postgres -u postgres -x !Passw0rd -e postgres -o .\
|
||||
typeorm-model-generator -h localhost -d postgres -u postgres -x !Passw0rd -e postgres -o .\ -s public --ssl
|
||||
````
|
||||
* Npx Way
|
||||
```
|
||||
npx typeorm-model-generator -h localhost -d postgres -u postgres -x !Passw0rd -e postgres -o .\
|
||||
npx typeorm-model-generator -h localhost -d postgres -u postgres -x !Passw0rd -e postgres -o .\ -s public --ssl
|
||||
````
|
Loading…
Reference in New Issue
Block a user