Skip to content
Snippets Groups Projects
Commit c6cdf70e authored by Jeffrey Phillips Freeman's avatar Jeffrey Phillips Freeman :boom:
Browse files

Fixed a bug that broke Initalizer configuration.

parent caef9213
No related branches found
No related tags found
No related merge requests found
......@@ -23,6 +23,9 @@ public class InitializerConfig {
private String databaseName;
public InitializerConfig() {
}
public InitializerConfig(final File[] scripts, final String databaseName) {
this.scripts = scripts;
this.databaseName = databaseName;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment