diff --git a/migration/360lts-release/oracle/853_IDEMPIERE-326.sql b/migration/360lts-release/oracle/853_IDEMPIERE-326.sql new file mode 100644 index 0000000000..b177807052 --- /dev/null +++ b/migration/360lts-release/oracle/853_IDEMPIERE-326.sql @@ -0,0 +1,8 @@ +-- Oracle procedure T_InventoryValue_Create is no longer used, can be deleted +drop procedure "T_INVENTORYVALUE_CREATE"; + +UPDATE AD_System + SET LastMigrationScriptApplied='853_IDEMPIERE-326.sql' +WHERE LastMigrationScriptApplied<'853_IDEMPIERE-326.sql' + OR LastMigrationScriptApplied IS NULL +; \ No newline at end of file diff --git a/migration/360lts-release/postgresql/853_IDEMPIERE-326.sql b/migration/360lts-release/postgresql/853_IDEMPIERE-326.sql new file mode 100644 index 0000000000..1d636046e5 --- /dev/null +++ b/migration/360lts-release/postgresql/853_IDEMPIERE-326.sql @@ -0,0 +1,7 @@ +-- Oracle procedure T_InventoryValue_Create is no longer used, can be deleted + +UPDATE AD_System + SET LastMigrationScriptApplied='853_IDEMPIERE-326.sql' +WHERE LastMigrationScriptApplied<'853_IDEMPIERE-326.sql' + OR LastMigrationScriptApplied IS NULL +; \ No newline at end of file