Aggiunta campo Flag_calc_peso_intra
This commit is contained in:
@@ -1,21 +0,0 @@
|
|||||||
package it.integry.ems.migration.model;
|
|
||||||
|
|
||||||
import it.integry.ems.migration._base.BaseMigration;
|
|
||||||
import it.integry.ems.migration._base.MigrationModelInterface;
|
|
||||||
|
|
||||||
public class Migration_20240513103201 extends BaseMigration implements MigrationModelInterface {
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void up() throws Exception {
|
|
||||||
if (isHistoryDB())
|
|
||||||
return;
|
|
||||||
|
|
||||||
executeStatement("alter table dtb_tipi add flag_calc_peso_intra varchar (1) null;");
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void down() throws Exception {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
package it.integry.ems.migration.model;import it.integry.ems.migration._base.BaseMigration;
|
||||||
|
import it.integry.ems.migration._base.MigrationModelInterface;
|
||||||
|
|
||||||
|
public class Migration_20240513182721 extends BaseMigration implements MigrationModelInterface{
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void up()throws Exception {
|
||||||
|
if(isHistoryDB())
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void down()throws Exception{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user