Merge branch 'develop'
All checks were successful
IntegryManagementSystem_Multi/pipeline/head This commit looks good

This commit is contained in:
jenkins
2025-07-20 07:41:39 +02:00
2 changed files with 24 additions and 1 deletions

View File

@@ -0,0 +1,23 @@
package it.integry.ems.migration.model;
import it.integry.ems.migration._base.BaseMigration;
import it.integry.ems.migration._base.MigrationModelInterface;
public class Migration_20250714083923 extends BaseMigration implements MigrationModelInterface {
@Override
public void up() throws Exception {
if (isHistoryDB())
return;
createSetup("DTB_DOCT", "SETUP", "NUOVA_VERSIONE_TEMP", "N",
"Se abilitato a S parte la nuova gestione del picking di vendita definita secondo le richieste di ROSSO GARGANO", false, null, false, false,
false, false, false, null, false, null);
}
@Override
public void down() throws Exception {
}
}

File diff suppressed because one or more lines are too long