mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 05:06:45 +01:00
Don't throw errors about dropped columns
This commit is contained in:
parent
ce7a7a31a7
commit
4c96161acb
@ -842,7 +842,7 @@ public final class SQLDatabaseManager implements DatabaseManager {
|
||||
return true;
|
||||
}
|
||||
catch (SQLException ex) {
|
||||
if (!sql.equalsIgnoreCase("ALTER TABLE `" + tablePrefix + "users` DROP COLUMN `party` ;")) {
|
||||
if (!sql.contains("DROP COLUMN")) {
|
||||
printErrors(ex);
|
||||
}
|
||||
return false;
|
||||
|
Loading…
Reference in New Issue
Block a user