Files
IntegryManagementSystem/fileTemplates/IntegryMigrationClass.java

18 lines
346 B
Java

#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 {
}
}