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.
王勇攀 dc8a862255 feat:通过使用--table_prefix 给表名加前缀
使得:
func (obj *_SymbolMgr) GetTableName() string {
 return "symbol"
}
变成:
func (obj *_SymbolMgr) GetTableName() string {
 return "tableprefix.symbol"
}
并在源头确定表名:tableprefix.symbol.
即真正执行mysql语句的时候,会按照tableprefix.symbol这个表名去执行。
4 years ago
..
cmd Fix table prefix flags 4 years ago
config add json tag lower camel case 4 years ago
dlg delete SingularTable 4 years ago
view feat:通过使用--table_prefix 给表名加前缀 4 years ago