6061626364656667
private DbStepResource getResource() { if (migrationPackage != null && !migrationPackage.isEmpty()) { return new PackageResource(migrationPackage, getClassLoaderWithCompiledClasses()); } else { return new DirResource(migrationScripts); } }
129130131132133134135
} public Db andDbScriptsInDir(File dir) { return andDbScripts(new DirResource(dir)); }