Rename Oracle ddl script name to be accurate.

Original schema name for oracle was schema-oracle10g.sql which was inaccurate.   It should just be schema-oracle.sql.
This commit is contained in:
Glenn Renfro
2022-04-27 15:57:28 -04:00
parent 6c052b0f34
commit 62cccc2727
2 changed files with 1 additions and 1 deletions

View File

@@ -111,7 +111,7 @@ public final class TaskRepositoryInitializer implements InitializingBean {
platform = "postgresql";
}
if ("oracle".equals(platform)) {
platform = "oracle10g";
platform = "oracle";
}
if ("mysql".equals(platform)) {
platform = "mysql";