Merge pull request #8546 from atm-quentin/FIX_Issue_8455

FIX Issue #8455
This commit is contained in:
Laurent Destailleur 2018-04-11 17:26:13 +02:00 committed by GitHub
commit 9a83a6ad6e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -528,6 +528,9 @@ CREATE TABLE llx_comment (
DELETE FROM llx_const where name = __ENCRYPT('MAIN_SHOW_WORKBOARD')__;
-- Adherent - Update old constants
UPDATE llx_const SET value = REPLACE(value, '%', '__') WHERE name LIKE 'ADHERENT%';
-- Accountancy - Remove old constants
DELETE FROM llx_const WHERE name = __ENCRYPT('ACCOUNTING_SELL_JOURNAL')__;
DELETE FROM llx_const WHERE name = __ENCRYPT('ACCOUNTING_PURCHASE_JOURNAL')__;