public void createSchema() {
String ddlPath = getDDLPath(getDatabaseName());
Platform platform = PlatformFactory.createNewPlatformInstance(getDataSource());
try {
String sqlString = FileUtils.readFileString(new File(ddlPath));
platform.evaluateBatch(sqlString, true);
} catch (FileNotFoundException e) {
if (isLoggingError()) {
logError("Can't create schema. ", e);
}
} catch (IOException e) {