From ad1837e65ab8a97ebdeba26615156e3431382ca5 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Tue, 11 Feb 2014 17:57:36 -0500 Subject: [PATCH] IDEMPIERE-1724 Field C_Charge_ID in table C_OrderLine has wrong dynamic Validation --- migration/i2.0/oracle/201402111757_IDEMPIERE-1724.sql | 11 +++++++++++ .../i2.0/postgresql/201402111757_IDEMPIERE-1724.sql | 8 ++++++++ 2 files changed, 19 insertions(+) create mode 100644 migration/i2.0/oracle/201402111757_IDEMPIERE-1724.sql create mode 100644 migration/i2.0/postgresql/201402111757_IDEMPIERE-1724.sql diff --git a/migration/i2.0/oracle/201402111757_IDEMPIERE-1724.sql b/migration/i2.0/oracle/201402111757_IDEMPIERE-1724.sql new file mode 100644 index 0000000000..08bbab32ad --- /dev/null +++ b/migration/i2.0/oracle/201402111757_IDEMPIERE-1724.sql @@ -0,0 +1,11 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- Feb 11, 2014 5:56:46 PM COT +-- IDEMPIERE-1724 Field C_Charge_ID in table C_OrderLine has wrong dynamic Validation +UPDATE AD_Column SET AD_Val_Rule_ID=52030,Updated=TO_DATE('2014-02-11 17:56:46','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=3050 +; + +SELECT register_migration_script('201402111757_IDEMPIERE-1724.sql') FROM dual +; + diff --git a/migration/i2.0/postgresql/201402111757_IDEMPIERE-1724.sql b/migration/i2.0/postgresql/201402111757_IDEMPIERE-1724.sql new file mode 100644 index 0000000000..ba3bf43412 --- /dev/null +++ b/migration/i2.0/postgresql/201402111757_IDEMPIERE-1724.sql @@ -0,0 +1,8 @@ +-- Feb 11, 2014 5:56:46 PM COT +-- IDEMPIERE-1724 Field C_Charge_ID in table C_OrderLine has wrong dynamic Validation +UPDATE AD_Column SET AD_Val_Rule_ID=52030,Updated=TO_TIMESTAMP('2014-02-11 17:56:46','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=3050 +; + +SELECT register_migration_script('201402111757_IDEMPIERE-1724.sql') FROM dual +; +