Feature model fix (#362)
* fix sql builderx adding raw string quotation marks incompatibility bug * add unit test * remove comments * fix sql builderx adding raw string quotation marks incompatibility bug
This commit is contained in:
@@ -2,12 +2,12 @@
|
||||
|
||||
# generate model with cache from ddl
|
||||
fromDDLWithCache:
|
||||
goctl template clean;
|
||||
goctl model mysql ddl -src="./sql/*.sql" -dir="./sql/model/cache/user" -cache;
|
||||
goctl template clean
|
||||
goctl model mysql ddl -src="./sql/*.sql" -dir="./sql/model/cache" -cache
|
||||
|
||||
fromDDLWithoutCache:
|
||||
goctl template clean;
|
||||
goctl model mysql ddl -src="./sql/*.sql" -dir="./sql/model/nocache/user";
|
||||
goctl model mysql ddl -src="./sql/*.sql" -dir="./sql/model/nocache"
|
||||
|
||||
|
||||
# generate model with cache from data source
|
||||
@@ -17,5 +17,5 @@ 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;
|
||||
goctl template clean
|
||||
goctl model mysql datasource -url="$(user):$(password)@tcp($(datasource))/$(database)" -table="*" -dir ./model/cache -c -style gozero
|
||||
|
||||
Reference in New Issue
Block a user