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;
|
||||
|
||||
public class Migration_20240314135021 extends BaseMigration implements MigrationModelInterface{
|
||||
public class Migration_20240314135021 extends BaseMigration implements MigrationModelInterface {
|
||||
|
||||
@Override
|
||||
public void up()throws Exception {
|
||||
if(isHistoryDB())
|
||||
public void up() throws Exception {
|
||||
if (isHistoryDB())
|
||||
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
|
||||
public void down()throws Exception{
|
||||
public void down() throws Exception {
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user