sea-orm-cli 0.1.1

Command line utility for SeaORM
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# SeaORM CLI

Getting Help:

```sh
cargo run -- -h
```

Running Entity Generator:

```sh
# MySQL (`--database-schema` option is ignored) 
cargo run -- generate entity -u mysql://sea:sea@localhost/bakery -o out

# PostgreSQL
cargo run -- generate entity -u postgres://sea:sea@localhost/bakery -s public -o out
```