From a307832930b8c7eb85b778463216c512222e954c Mon Sep 17 00:00:00 2001 From: Nicolas Micoud Date: Thu, 12 Jul 2012 15:20:49 +0200 Subject: [PATCH] IDEMPIERE-326 - Oracle procedure T_InventoryValue_Create has error --- migration/360lts-release/oracle/853_IDEMPIERE-326.sql | 8 ++++++++ migration/360lts-release/postgresql/853_IDEMPIERE-326.sql | 7 +++++++ 2 files changed, 15 insertions(+) create mode 100644 migration/360lts-release/oracle/853_IDEMPIERE-326.sql create mode 100644 migration/360lts-release/postgresql/853_IDEMPIERE-326.sql 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