From 1f089603e31ad2b43114246cb0be015606b9b899 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sun, 21 May 2006 22:12:48 +0000 Subject: [PATCH] Qual: Uniformisation nommage parametre de table des constantes --- mysql/migration/2.0.0-2.1.0.sql | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mysql/migration/2.0.0-2.1.0.sql b/mysql/migration/2.0.0-2.1.0.sql index f62f3a5baee..9ae706cc2ea 100644 --- a/mysql/migration/2.0.0-2.1.0.sql +++ b/mysql/migration/2.0.0-2.1.0.sql @@ -98,6 +98,7 @@ drop table if exists llx_avoir_model_pdf; drop table if exists llx_soc_recontact; +update llx_const set name='DON_FORM' where name='DONS_FORM'; update llx_const set name='MAIN_SIZE_LISTE_LIMIT' where name='SIZE_LISTE_LIMIT'; update llx_const set name='SOCIETE_FISCAL_MONTH_START' where name='FISCAL_MONTH_START'; update llx_const set visible=0 where name='FACTURE_DISABLE_RECUR'; @@ -105,6 +106,10 @@ update llx_const set visible=0 where name='MAILING_EMAIL_FROM'; insert into llx_const(name,value,type,visible,note) values('MAIN_SHOW_DEVELOPMENT_MODULES','0','yesno',1,'Make development modules visible'); +insert into llx_const(name,value,type,visible,note) values('MAIN_FASTSEARCH_COMPANY','1','yesno',0,'Show form for quick company search'); +insert into llx_const(name,value,type,visible,note) values('MAIN_FASTSEARCH_CONTACT','1','yesno',0,'Show form for quick contact search'); +insert into llx_const(name,value,type,visible,note) values('MAIN_FASTSEARCH_PRODUCT','1','yesno',0,'Show form for quick product search'); + alter table llx_paiementfourn add statut smallint(6) NOT NULL DEFAULT 0;