From dbc3ef550de30ae689af1fb02681240c2ba65fdd Mon Sep 17 00:00:00 2001 From: Nicolas Micoud Date: Wed, 29 Oct 2014 11:05:43 -0500 Subject: [PATCH] IDEMPIERE-2279 C_ContactActivity SalesRep_ID has no AD_Reference_Value_ID --- migration/i2.0z/oracle/201410271848_IDEMPIERE-2279.sql | 10 ++++++++++ .../i2.0z/postgresql/201410271848_IDEMPIERE-2279.sql | 7 +++++++ 2 files changed, 17 insertions(+) create mode 100644 migration/i2.0z/oracle/201410271848_IDEMPIERE-2279.sql create mode 100644 migration/i2.0z/postgresql/201410271848_IDEMPIERE-2279.sql diff --git a/migration/i2.0z/oracle/201410271848_IDEMPIERE-2279.sql b/migration/i2.0z/oracle/201410271848_IDEMPIERE-2279.sql new file mode 100644 index 0000000000..97dc5d20b8 --- /dev/null +++ b/migration/i2.0z/oracle/201410271848_IDEMPIERE-2279.sql @@ -0,0 +1,10 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- Oct 28, 2014 6:45:00 PM CET +-- IDEMPIERE-2279 C_ContactActivity SalesRep_ID has no AD_Reference_Value_ID +UPDATE AD_Column SET AD_Reference_Value_ID=110,Updated=TO_DATE('2014-10-28 18:45:00','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=62467 +; + +SELECT register_migration_script('201410271848_IDEMPIERE-2279.sql') FROM dual +; \ No newline at end of file diff --git a/migration/i2.0z/postgresql/201410271848_IDEMPIERE-2279.sql b/migration/i2.0z/postgresql/201410271848_IDEMPIERE-2279.sql new file mode 100644 index 0000000000..b182a345dc --- /dev/null +++ b/migration/i2.0z/postgresql/201410271848_IDEMPIERE-2279.sql @@ -0,0 +1,7 @@ +-- Oct 28, 2014 6:45:00 PM CET +-- IDEMPIERE-2279 C_ContactActivity SalesRep_ID has no AD_Reference_Value_ID +UPDATE AD_Column SET AD_Reference_Value_ID=110,Updated=TO_TIMESTAMP('2014-10-28 18:45:00','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=62467 +; + +SELECT register_migration_script('201410271848_IDEMPIERE-2279.sql') FROM dual +; \ No newline at end of file