mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-25 02:08:44 +08:00
7 lines
279 B
Bash
7 lines
279 B
Bash
#!/bin/bash
|
|
|
|
# generate model with cache from ddl
|
|
goctl model mysql ddl -src="./sql/user.sql" -dir="./sql/model" -c
|
|
|
|
# generate model with cache from data source
|
|
goctl model mysql datasource -url="user:password@tcp(127.0.0.1:3306)/database" -table="table1,table2" -dir="./model" |