Create setup per inserimento listino e codice pagamento di default
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
package it.integry.ems.migration.model;
|
||||
|
||||
import it.integry.ems.migration._base.BaseMigration;
|
||||
import it.integry.ems.migration._base.MigrationModelInterface;
|
||||
|
||||
public class Migration_20250124173534 extends BaseMigration implements MigrationModelInterface {
|
||||
|
||||
@Override
|
||||
public void up() throws Exception {
|
||||
if (isHistoryDB())
|
||||
return;
|
||||
|
||||
createSetup("W_VDOCU_CLIE_DLG", "SETUP", "COD_PAGA_CLIE_DEFAULT", null,
|
||||
"Inserire codice di pagamento agganciato al cliente per il caricamento dell'anagrafica dalla gestione documenti", false, null, false, false,
|
||||
false, false, false, null, false, null);
|
||||
|
||||
createSetup("W_VDOCU_CLIE_DLG", "SETUP", "COD_VLIS_CLIE_DEFAULT", null,
|
||||
"Inserire codice listino agganciato al cliente per il caricamento dell'anagrafica dalla gestione documenti", false, null, false, false,
|
||||
false, false, false, null, false, null);
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void down() throws Exception {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user