Fix the extra comma in mysql edit table

This commit is contained in:
SwallowGG
2023-12-29 11:56:16 +08:00
parent 056df5d273
commit 3e0412e09a

View File

@ -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));