Add reading/setting of namingconvention.schema from ebean.properties

This commit is contained in:
Rob Bygrave
2014-01-17 00:31:03 +13:00
parent 5f4789f9ba
commit e97e77e2e0
2 changed files with 7 additions and 1 deletions
@@ -353,6 +353,11 @@ public class DefaultServerFactory implements BootupEbeanManager {
if (sequenceFormat != null) {
nc.setSequenceFormat(sequenceFormat);
}
String schema = config.getProperty("namingConvention.schema");
if (schema != null) {
nc.setSchema(schema);
}
}
}