Fixed Patch code failing if a table doesn't exist

This commit is contained in:
Rsl1122 2019-02-17 22:57:37 +02:00
parent 1378d3100e
commit e2310e4376

View File

@ -85,7 +85,7 @@ public abstract class Patch extends OperationCriticalTransaction {
}
protected void dropTable(String name) {
execute("DROP TABLE " + name);
execute("DROP TABLE IF EXISTS " + name);
}
protected void renameTable(String from, String to) {