From 9e08f34f31500b911ae8ff318bf49fddbf5b11c7 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Fri, 15 Sep 2006 23:28:55 +0000 Subject: [PATCH] =?UTF-8?q?Fix:=20La=20migration=20fait=20du=20zele=20est?= =?UTF-8?q?=20pert=20les=20action=20personalis=E9s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mysql/migration/2.0.0-2.1.0.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mysql/migration/2.0.0-2.1.0.sql b/mysql/migration/2.0.0-2.1.0.sql index d06cc8fd288..376a9520a40 100644 --- a/mysql/migration/2.0.0-2.1.0.sql +++ b/mysql/migration/2.0.0-2.1.0.sql @@ -84,7 +84,7 @@ alter table llx_categorie add visible tinyint DEFAULT 1 NOT NULL; alter table llx_c_actioncomm add module varchar(16) DEFAULT NULL after libelle; -delete from llx_c_actioncomm; +delete from llx_c_actioncomm where id in (1,2,3,4,5,8,9,50); insert into llx_c_actioncomm (id, code, type, libelle, module) values ( 1, 'AC_TEL', 'system', 'Appel Téléphonique' ,NULL); insert into llx_c_actioncomm (id, code, type, libelle, module) values ( 2, 'AC_FAX', 'system', 'Envoi Fax' ,NULL); insert into llx_c_actioncomm (id, code, type, libelle, module) values ( 3, 'AC_PROP', 'system', 'Envoi Proposition' ,'propal');