From 2ac53ef2fd4880e7fbb513816171d52c6b69c8ca Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Thu, 22 Jun 2017 17:48:46 +0200 Subject: [PATCH] IDEMPIERE-794 fix wrong reference --- migration/i4.1/oracle/201706220209_IDEMPIERE-794.sql | 8 ++++++++ migration/i4.1/postgresql/201706220209_IDEMPIERE-794.sql | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100644 migration/i4.1/oracle/201706220209_IDEMPIERE-794.sql create mode 100644 migration/i4.1/postgresql/201706220209_IDEMPIERE-794.sql diff --git a/migration/i4.1/oracle/201706220209_IDEMPIERE-794.sql b/migration/i4.1/oracle/201706220209_IDEMPIERE-794.sql new file mode 100644 index 0000000000..84ca0fa73f --- /dev/null +++ b/migration/i4.1/oracle/201706220209_IDEMPIERE-794.sql @@ -0,0 +1,8 @@ +-- IDEMPIERE-794 Ticket #1001025 - Expand the views to provide more information / fix a reference that was wrongly defined +-- Jun 21, 2017 7:07:04 PM COT +UPDATE AD_Ref_Table SET AD_Table_ID=560, AD_Key=8490, AD_Display=8489,Updated=TO_DATE('2017-06-21 19:07:04','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Reference_ID=200055 +; + +SELECT register_migration_script('201706220209_IDEMPIERE-794.sql') FROM dual +; + diff --git a/migration/i4.1/postgresql/201706220209_IDEMPIERE-794.sql b/migration/i4.1/postgresql/201706220209_IDEMPIERE-794.sql new file mode 100644 index 0000000000..7db183f902 --- /dev/null +++ b/migration/i4.1/postgresql/201706220209_IDEMPIERE-794.sql @@ -0,0 +1,8 @@ +-- IDEMPIERE-794 Ticket #1001025 - Expand the views to provide more information / fix a reference that was wrongly defined +-- Jun 21, 2017 7:07:04 PM COT +UPDATE AD_Ref_Table SET AD_Table_ID=560, AD_Key=8490, AD_Display=8489,Updated=TO_TIMESTAMP('2017-06-21 19:07:04','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Reference_ID=200055 +; + +SELECT register_migration_script('201706220209_IDEMPIERE-794.sql') FROM dual +; +