Skip to content

Commit

Permalink
Adjust db type if postgres
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Syer committed Oct 23, 2013
1 parent 4b2cea7 commit e789840
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@ manifest.yml
MANIFEST.MF
settings.xml
activemq-data
overridedb.*
*.iml
.idea
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ protected void initialize() throws Exception {
if ("hsql".equals(platform)) {
platform = "hsqldb";
}
if ("postgres".equals(platform)) {
platform = "postgresql";
}
ResourceDatabasePopulator populator = new ResourceDatabasePopulator();
String schemaLocation = this.environment.getProperty("schema",
DEFAULT_SCHEMA_LOCATION);
Expand Down

0 comments on commit e789840

Please sign in to comment.