Skip to content

Commit

Permalink
ho-dev#1905 remove database table SPIELERSKILLUP
Browse files Browse the repository at this point in the history
  • Loading branch information
wsbrenk committed Dec 25, 2023
1 parent b3d32d5 commit 742af33
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/java/core/db/DBUpdater.java
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,9 @@ void updateDB(int DBVersion) {
}

private void updateDBv800(int dbVersion) throws SQLException {
assert dbManager.getConnectionManager() != null;
dbManager.getConnectionManager().executeUpdate("DROP TABLE IF EXISTS SPIELERSKILLUP");

if (!tableExists(FuturePlayerSkillTrainingTable.TABLENAME)) {
dbManager.getTable(FuturePlayerSkillTrainingTable.TABLENAME).createTable();
}
Expand Down

0 comments on commit 742af33

Please sign in to comment.