From abbfb5be74e45fa4c6a42afb0051c8afd1789f46 Mon Sep 17 00:00:00 2001 From: Elaine Tan Date: Thu, 17 Oct 2013 12:34:23 +0800 Subject: [PATCH] IDEMPIERE-1286 Improve address validation configuration to support external services - set C_AddressValidation.C_AddressValidationCfg_ID column to updatable --- migration/i1.0z/oracle/201310171231_IDEMPIERE-1286.sql | 10 ++++++++++ .../i1.0z/postgresql/201310171231_IDEMPIERE-1286.sql | 7 +++++++ 2 files changed, 17 insertions(+) create mode 100644 migration/i1.0z/oracle/201310171231_IDEMPIERE-1286.sql create mode 100644 migration/i1.0z/postgresql/201310171231_IDEMPIERE-1286.sql diff --git a/migration/i1.0z/oracle/201310171231_IDEMPIERE-1286.sql b/migration/i1.0z/oracle/201310171231_IDEMPIERE-1286.sql new file mode 100644 index 0000000000..fe084e1a4c --- /dev/null +++ b/migration/i1.0z/oracle/201310171231_IDEMPIERE-1286.sql @@ -0,0 +1,10 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- Oct 17, 2013 12:21:33 PM SGT +-- IDEMPIERE-1286 Improve address validation configuration to support external services +UPDATE AD_Column SET IsUpdateable='Y',Updated=TO_DATE('2013-10-17 12:21:33','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=210762 +; + +SELECT register_migration_script('201310171231_IDEMPIERE-1286.sql') FROM dual +; \ No newline at end of file diff --git a/migration/i1.0z/postgresql/201310171231_IDEMPIERE-1286.sql b/migration/i1.0z/postgresql/201310171231_IDEMPIERE-1286.sql new file mode 100644 index 0000000000..e020720e01 --- /dev/null +++ b/migration/i1.0z/postgresql/201310171231_IDEMPIERE-1286.sql @@ -0,0 +1,7 @@ +-- Oct 17, 2013 12:21:33 PM SGT +-- IDEMPIERE-1286 Improve address validation configuration to support external services +UPDATE AD_Column SET IsUpdateable='Y',Updated=TO_TIMESTAMP('2013-10-17 12:21:33','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=210762 +; + +SELECT register_migration_script('201310171231_IDEMPIERE-1286.sql') FROM dual +; \ No newline at end of file