Skip to content

Commit

Permalink
#1905 remove database table SPIELERSKILLUP (#2005)
Browse files Browse the repository at this point in the history
  • Loading branch information
wsbrenk authored Jan 6, 2024
1 parent a26c419 commit e5c9195
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 e5c9195

Please sign in to comment.