mirror of
https://github.com/CodePhiliaX/Chat2DB.git
synced 2025-07-29 18:53:12 +08:00
Fix the extra comma in mysql edit table
This commit is contained in:
@ -111,7 +111,7 @@ public class MysqlSqlBuilder extends DefaultSqlBuilder implements SqlBuilder {
|
||||
}
|
||||
|
||||
// append reorder column
|
||||
script.append("\t").append(buildGenerateReorderColumnSql(oldTable, newTable));
|
||||
script.append(buildGenerateReorderColumnSql(oldTable, newTable));
|
||||
|
||||
if (script.length() > 2) {
|
||||
script = new StringBuilder(script.substring(0, script.length() - 2));
|
||||
|
Reference in New Issue
Block a user