Implementata logica migrazioni

This commit is contained in:
2021-07-21 12:54:49 +02:00
parent 2f6fe79300
commit 0e977f7f52
10 changed files with 276 additions and 42 deletions

View File

@@ -0,0 +1,17 @@
#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME};#end
#parse("File Header.java")
import it.integry.ems.migration.model._base.MigrationModelInterface;
public class ${NAME} implements MigrationModelInterface {
@Override
public void up() throws Exception {
}
@Override
public void down() throws Exception {
}
}