Skip to content
Snippets Groups Projects
Commit 002bebd8 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix missing extraparams make sql syntax error

parent e48ba067
No related branches found
No related tags found
No related merge requests found
......@@ -32,6 +32,8 @@ UPDATE llx_const SET name = __ENCRYPT('THIRDPARTY_DEFAULT_CREATE_CONTACT')__ WHE
ALTER TABLE llx_product_lot MODIFY COLUMN entity integer DEFAULT 1;
UPDATE llx_product_lot SET entity = 1 WHERE entity IS NULL;
ALTER TABLE llx_bank_account ADD COLUMN extraparams varchar(255);
ALTER TABLE llx_societe ALTER COLUMN fk_stcomm SET DEFAULT 0;
ALTER TABLE llx_c_actioncomm ADD COLUMN picto varchar(48);
......
......@@ -58,5 +58,6 @@ create table llx_bank_account
comment text, -- TODO rename in note_private
note_public text,
model_pdf varchar(255),
import_key varchar(14)
import_key varchar(14),
extraparams varchar(255) -- for other parameters with json format
)ENGINE=innodb;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment