mirror of
https://github.com/CodePhiliaX/Chat2DB.git
synced 2025-07-29 02:32:33 +08:00
Fix DM index error
This commit is contained in:
@ -17,7 +17,7 @@ public class MysqlSqlBuilder extends DefaultSqlBuilder implements SqlBuilder {
|
||||
StringBuilder script = new StringBuilder();
|
||||
script.append("CREATE TABLE ");
|
||||
if(StringUtils.isNotBlank(table.getDatabaseName())) {
|
||||
script.append("`").append(table.getName()).append("`").append(".");
|
||||
script.append("`").append(table.getDatabaseName()).append("`").append(".");
|
||||
}
|
||||
script.append("`").append(table.getName()).append("`").append(" (").append("\n");
|
||||
|
||||
|
Reference in New Issue
Block a user