From 45ce71ef4807035a3b7ca5b3f20f471b84200e56 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Thu, 6 Aug 2015 17:30:03 -0500 Subject: [PATCH] IDEMPIERE-2757 Key for M_Storage wrongly defined on dictionary --- migration/i2.1/oracle/201508061729_IDEMPIERE-2757.sql | 11 +++++++++++ .../i2.1/postgresql/201508061729_IDEMPIERE-2757.sql | 8 ++++++++ 2 files changed, 19 insertions(+) create mode 100644 migration/i2.1/oracle/201508061729_IDEMPIERE-2757.sql create mode 100644 migration/i2.1/postgresql/201508061729_IDEMPIERE-2757.sql diff --git a/migration/i2.1/oracle/201508061729_IDEMPIERE-2757.sql b/migration/i2.1/oracle/201508061729_IDEMPIERE-2757.sql new file mode 100644 index 0000000000..5322ede126 --- /dev/null +++ b/migration/i2.1/oracle/201508061729_IDEMPIERE-2757.sql @@ -0,0 +1,11 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- IDEMPIERE-2757 Key for M_Storage wrongly defined on dictionary +-- Aug 6, 2015 5:28:43 PM COT +UPDATE AD_Column SET IsParent='Y', IsUpdateable='N',Updated=TO_DATE('2015-08-06 17:28:43','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=210887 +; + +SELECT register_migration_script('201508061729_IDEMPIERE-2757.sql') FROM dual +; + diff --git a/migration/i2.1/postgresql/201508061729_IDEMPIERE-2757.sql b/migration/i2.1/postgresql/201508061729_IDEMPIERE-2757.sql new file mode 100644 index 0000000000..8c2d659cd1 --- /dev/null +++ b/migration/i2.1/postgresql/201508061729_IDEMPIERE-2757.sql @@ -0,0 +1,8 @@ +-- IDEMPIERE-2757 Key for M_Storage wrongly defined on dictionary +-- Aug 6, 2015 5:28:43 PM COT +UPDATE AD_Column SET IsParent='Y', IsUpdateable='N',Updated=TO_TIMESTAMP('2015-08-06 17:28:43','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=210887 +; + +SELECT register_migration_script('201508061729_IDEMPIERE-2757.sql') FROM dual +; +