From f175e3076e0fd502e96e96a50f7295b38e6a6873 Mon Sep 17 00:00:00 2001 From: Diego Ruiz Date: Wed, 5 Feb 2020 17:44:33 +0100 Subject: [PATCH] IDEMPIERE-4166 Use css font icon instead of image for button as default --- .../i7.1z/oracle/202002051743_IDEMPIERE-4166.sql | 11 +++++++++++ .../i7.1z/postgresql/202002051743_IDEMPIERE-4166.sql | 8 ++++++++ 2 files changed, 19 insertions(+) create mode 100644 migration/i7.1z/oracle/202002051743_IDEMPIERE-4166.sql create mode 100644 migration/i7.1z/postgresql/202002051743_IDEMPIERE-4166.sql diff --git a/migration/i7.1z/oracle/202002051743_IDEMPIERE-4166.sql b/migration/i7.1z/oracle/202002051743_IDEMPIERE-4166.sql new file mode 100644 index 0000000000..2458fb006e --- /dev/null +++ b/migration/i7.1z/oracle/202002051743_IDEMPIERE-4166.sql @@ -0,0 +1,11 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- IDEMPIERE-4166 Use css font icon instead of image for button as default +-- Feb 5, 2020, 5:38:34 PM CET +UPDATE AD_SysConfig SET Value='Y',Updated=TO_DATE('2020-02-05 17:38:34','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_SysConfig_ID=200111 +; + +SELECT register_migration_script('202002051743_IDEMPIERE-4166.sql') FROM dual +; + diff --git a/migration/i7.1z/postgresql/202002051743_IDEMPIERE-4166.sql b/migration/i7.1z/postgresql/202002051743_IDEMPIERE-4166.sql new file mode 100644 index 0000000000..21741105ff --- /dev/null +++ b/migration/i7.1z/postgresql/202002051743_IDEMPIERE-4166.sql @@ -0,0 +1,8 @@ +-- IDEMPIERE-4166 Use css font icon instead of image for button as default +-- Feb 5, 2020, 5:38:34 PM CET +UPDATE AD_SysConfig SET Value='Y',Updated=TO_TIMESTAMP('2020-02-05 17:38:34','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_SysConfig_ID=200111 +; + +SELECT register_migration_script('202002051743_IDEMPIERE-4166.sql') FROM dual +; +