db.databaseUser = template.getDatabaseUsername();
db.databasePassword = template.getDatabasePassword();
}
{
RunScript script = dbConnection.addChild(RunScript.class);
try {
script.sql = ResourceUtils.get(getClass(), "schema.sql");
} catch (IOException e) {
throw new OpsException("Error loading SQL script resource", e);
}