From 71ac3d435914b47138107f533646229836790220 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Mon, 22 Oct 2012 01:01:10 +0200 Subject: [PATCH] Migrate to new syslog system. --- htdocs/install/mysql/migration/3.2.0-3.3.0.sql | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/htdocs/install/mysql/migration/3.2.0-3.3.0.sql b/htdocs/install/mysql/migration/3.2.0-3.3.0.sql index 52f9bbaca51..fa1989522c9 100755 --- a/htdocs/install/mysql/migration/3.2.0-3.3.0.sql +++ b/htdocs/install/mysql/migration/3.2.0-3.3.0.sql @@ -760,6 +760,10 @@ UPDATE llx_product p SET p.stock= (SELECT SUM(ps.reel) FROM llx_product_stock ps -- Add possibility to defined position/job of a user ALTER TABLE llx_user ADD COLUMN job varchar(128) AFTER firstname; + +INSERT INTO llx_const(name, entity, value) SELECT 'SYSLOG_HANDLERS', 1, '["mod_syslog_file"]' FROM llx_const WHERE name = 'SYSLOG_FILE_ON' and value = '1'; + + -- New Imports ALTER TABLE llx_commande_fournisseurdet ADD COLUMN import_key varchar(14) AFTER info_bits; ALTER TABLE llx_entrepot ADD COLUMN import_key varchar(14) AFTER fk_user_author;