From eb6c1f43473e533d6e59cc9e05d0dd72f8e01291 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Wed, 24 Aug 2016 15:11:22 +0200 Subject: [PATCH] IDEMPIERE-3158 When we copy a bank account, the field Current Balance is copied too / integrate patch contributed by Matheus Eduardo Marcelino (MatheusMarcelino) --- .../i3.1/oracle/20160815103455_IDEMPIERE-3158.sql | 10 ++++++++++ .../i3.1/postgresql/20160815103455_IDEMPIERE-3158.sql | 7 +++++++ 2 files changed, 17 insertions(+) create mode 100644 migration/i3.1/oracle/20160815103455_IDEMPIERE-3158.sql create mode 100644 migration/i3.1/postgresql/20160815103455_IDEMPIERE-3158.sql diff --git a/migration/i3.1/oracle/20160815103455_IDEMPIERE-3158.sql b/migration/i3.1/oracle/20160815103455_IDEMPIERE-3158.sql new file mode 100644 index 0000000000..c7e3dac0a2 --- /dev/null +++ b/migration/i3.1/oracle/20160815103455_IDEMPIERE-3158.sql @@ -0,0 +1,10 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator +-- Aug 15, 2016 10:12:48 AM BRT +UPDATE AD_Column SET IsAllowCopy='N',Updated=TO_DATE('2016-08-15 10:12:48','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=3075 +; + +SELECT register_migration_script('20160815103455_IDEMPIERE-3158.sql') FROM dual +; diff --git a/migration/i3.1/postgresql/20160815103455_IDEMPIERE-3158.sql b/migration/i3.1/postgresql/20160815103455_IDEMPIERE-3158.sql new file mode 100644 index 0000000000..9e128deeb5 --- /dev/null +++ b/migration/i3.1/postgresql/20160815103455_IDEMPIERE-3158.sql @@ -0,0 +1,7 @@ +-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator +-- Aug 15, 2016 10:12:48 AM BRT +UPDATE AD_Column SET IsAllowCopy='N',Updated=TO_TIMESTAMP('2016-08-15 10:12:48','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=3075 +; + +SELECT register_migration_script('20160815103455_IDEMPIERE-3158.sql') FROM dual +;