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';