From 4c9a597c8afd5a112044a7e4dd05130fa15f240a Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sun, 27 Dec 2020 15:13:20 +0100 Subject: [PATCH] Update 12.0.0-13.0.0.sql --- htdocs/install/mysql/migration/12.0.0-13.0.0.sql | 6 ------ 1 file changed, 6 deletions(-) diff --git a/htdocs/install/mysql/migration/12.0.0-13.0.0.sql b/htdocs/install/mysql/migration/12.0.0-13.0.0.sql index be0e25db693..c6ca487de43 100644 --- a/htdocs/install/mysql/migration/12.0.0-13.0.0.sql +++ b/htdocs/install/mysql/migration/12.0.0-13.0.0.sql @@ -60,12 +60,6 @@ ALTER TABLE llx_mrp_mo_extrafields ADD INDEX idx_mrp_mo_fk_object(fk_object); -- For v13 --- members -ALTER TABLE llx_adherent ADD COLUMN ref varchar(30) AFTER rowid; -UPDATE llx_adherent SET ref = rowid WHERE ref = ''; -ALTER TABLE llx_adherent MODIFY COLUMN ref varchar(30) NOT NULL; -ALTER TABLE llx_adherent ADD UNIQUE INDEX uk_adherent_ref (ref, entity); - insert into llx_c_tva(rowid,fk_pays,taux,recuperableonly,note,active) values (111,11, '0','0','No Sales Tax',1); insert into llx_c_tva(rowid,fk_pays,taux,recuperableonly,note,active) values (112,11, '4','0','Sales Tax 4%',1); insert into llx_c_tva(rowid,fk_pays,taux,recuperableonly,note,active) values (113,11, '6','0','Sales Tax 6%',1);