in src/main/java/org/apache/nutch/webui/config/CustomTableCreator.java [76:82]
private void createTableIfNotExists(DatabaseTableConfig<?> tableConfig) {
try {
TableUtils.createTableIfNotExists(connectionSource, tableConfig);
} catch (SQLException e) {
throw new RuntimeException(e);
}
}