IDEMPIERE-4166 Use css font icon instead of image for button as default

This commit is contained in:
Diego Ruiz 2020-02-05 17:44:33 +01:00 committed by Carlos Ruiz
parent 3dd7349c99
commit f175e3076e
2 changed files with 19 additions and 0 deletions

View File

@ -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
;

View File

@ -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
;