You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
912 B
Makefile
30 lines
912 B
Makefile
#!/bin/bash
|
|
|
|
# generate model with cache from ddl
|
|
fromDDLWithCache:
|
|
goctl template clean
|
|
goctl model mysql ddl -src="./sql/*.sql" -dir="./sql/model/cache" -cache
|
|
|
|
fromDDLWithCacheAndIgnoreColumns:
|
|
goctl template clean
|
|
goctl model mysql ddl -src="./sql/*.sql" -dir="./sql/model/ignore_columns/cache" -cache -i 'gmt_create,create_at' -i 'gmt_modified,update_at'
|
|
|
|
fromDDLWithCacheAndDb:
|
|
goctl template clean
|
|
goctl model mysql ddl -src="./sql/*.sql" -dir="./sql/model/cache_db" -database="1gozero" -cache
|
|
|
|
fromDDLWithoutCache:
|
|
goctl template clean;
|
|
goctl model mysql ddl -src="./sql/*.sql" -dir="./sql/model/nocache"
|
|
|
|
|
|
# generate model with cache from data source
|
|
user=root
|
|
password=password
|
|
datasource=127.0.0.1:3306
|
|
database=gozero
|
|
|
|
fromDataSource:
|
|
goctl template clean
|
|
goctl model mysql datasource -url="$(user):$(password)@tcp($(datasource))/$(database)" -table="*" -dir ./model/cache -c -style gozero
|