Nuovo campo in anagrafica articoli per stampa articolo su documenti
All checks were successful
IntegryManagementSystem_Multi/pipeline/head This commit looks good

This commit is contained in:
2025-02-14 10:01:36 +01:00
parent 4d5021fea6
commit 717a3ecc3b

View File

@@ -9,11 +9,13 @@ public class Migration_20250207164130 extends BaseMigration implements Migration
public void up() throws Exception { public void up() throws Exception {
if (isHistoryDB()) if (isHistoryDB())
return; return;
executeStatement(
"alter table mtb_aart add flag_stampa_docu_vend bit not null default 1" ); executeStatement(
"alter table mtb_aart add flag_stampa_docu_vend bit not null default 1");
} }
@Override @Override
public void down() throws Exception { public void down() throws Exception {
} }
} }