public class ClearSQLDatabase {
public static void main(String[] args) {
try {
SQLRebuilder sqlDb = new SQLRebuilder();
sqlDb.setServerConfiguration(Server.getConfig());
sqlDb.init();
sqlDb.blankExistingTables();
} catch (Exception e) {
throw new RuntimeException(e);
}
}