From fda9c87c56f3f094184d06b65456d4d0a50e2604 Mon Sep 17 00:00:00 2001 From: Regis Houssin Date: Fri, 2 Jun 2006 17:04:01 +0000 Subject: [PATCH] =?UTF-8?q?Fix:=20ajoutait=20des=20mod=E8les=20qui=20n'=E9?= =?UTF-8?q?tait=20pas=20forcement=20s=E9lectionn=E9=20=E0=20la=20base?= 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, 2 deletions(-) diff --git a/mysql/migration/2.0.0-2.1.0.sql b/mysql/migration/2.0.0-2.1.0.sql index af7d08ac75f..6fb5a005000 100644 --- a/mysql/migration/2.0.0-2.1.0.sql +++ b/mysql/migration/2.0.0-2.1.0.sql @@ -180,9 +180,7 @@ alter table llx_propal_model_pdf rename to llx_document_model; alter table llx_document_model add column type varchar(20) NOT NULL after nom; update llx_document_model set type='propal' where type=''; -insert into llx_document_model(nom,type) values('einstein','order'); insert into llx_document_model(nom,type) values('soleil','ficheinter'); -insert into llx_document_model(nom,type) values('rouget','shipping'); delete from llx_document_model where nom='adytek'; delete from llx_document_model where nom='rouge' and type='order'; delete from llx_document_model where nom='azur' and type='order';