FIX #7031 missing change column "state_id" since dolibarr 3.5 !!

This commit is contained in:
Laurent Destailleur 2017-06-19 15:07:55 +02:00
parent bb2d27280b
commit 241ec01adf

View File

@ -98,6 +98,11 @@ ALTER TABLE llx_actioncomm ADD COLUMN extraparams varchar(255);
ALTER TABLE llx_bank_account ADD COLUMN extraparams varchar(255);
ALTER TABLE llx_bank_account MODIFY COLUMN state_id integer DEFAULT NULL;
ALTER TABLE llx_adherent MODIFY COLUMN state_id integer DEFAULT NULL;
ALTER TABLE llx_adherent MODIFY COLUMN country integer DEFAULT NULL;
insert into llx_c_action_trigger (code,label,description,elementtype,rang) values ('PRODUCT_CREATE','Product or service created','Executed when a product or sevice is created','product',30);
insert into llx_c_action_trigger (code,label,description,elementtype,rang) values ('PRODUCT_MODIFY','Product or service modified','Executed when a product or sevice is modified','product',30);