Aggiunta nuova setup
This commit is contained in:
@@ -1,16 +1,26 @@
|
|||||||
package it.integry.ems.migration.model;import it.integry.ems.migration._base.BaseMigration;
|
package it.integry.ems.migration.model;
|
||||||
|
|
||||||
|
import it.integry.ems.migration._base.BaseMigration;
|
||||||
import it.integry.ems.migration._base.MigrationModelInterface;
|
import it.integry.ems.migration._base.MigrationModelInterface;
|
||||||
|
|
||||||
public class Migration_20240314135021 extends BaseMigration implements MigrationModelInterface{
|
public class Migration_20240314135021 extends BaseMigration implements MigrationModelInterface {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void up()throws Exception {
|
public void up() throws Exception {
|
||||||
if(isHistoryDB())
|
if (isHistoryDB())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
final String gestName = "IMPORT_LISTINI ACQUISTO";
|
||||||
|
final String section = "APULIA_CARREFOUR";
|
||||||
|
createSetup(gestName, section, "PREZZO_NETTO", "S",
|
||||||
|
"Importazione prezzo netto dai listini di apulia.",
|
||||||
|
"SI_NO", true);
|
||||||
|
|
||||||
|
deleteSetup(gestName, section, "PREZZO_NETTO_NETTO");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void down()throws Exception{
|
public void down() throws Exception {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user