Remove unused/unsupported SQLite command

This commit is contained in:
ceze88 2024-07-17 17:39:35 +02:00
parent e04f39ad48
commit 6c11a51f28

View File

@ -74,9 +74,10 @@ public class _2_DuplicateMigration extends DataMigration {
connection.commit();
connection.setAutoCommit(true);
// free up disk space (sqlite command)
try (Statement statement = connection.createStatement()) {
statement.executeUpdate("VACUUM");
}
// try (Statement statement = connection.createStatement()) {
// statement.executeUpdate("VACUUM");
// }
//SQLite no longer supported/used
}
}