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

Fix: Bad field size

parent 2a961722
No related branches found
No related tags found
No related merge requests found
......@@ -256,6 +256,7 @@ CREATE TABLE llx_printer_ipp
) ENGINE=innodb;
ALTER TABLE llx_socpeople ADD COLUMN ref_ext varchar(128) after entity;
ALTER TABLE llx_adherent MODIFY COLUMN ref_ext varchar(128);
create table llx_commande_extrafields
(
......
......@@ -28,7 +28,7 @@ create table llx_adherent
(
rowid integer AUTO_INCREMENT PRIMARY KEY,
entity integer DEFAULT 1 NOT NULL, -- multi company id
ref_ext varchar(30), -- reference into an external system (not used by dolibarr)
ref_ext varchar(128), -- reference into an external system (not used by dolibarr)
civilite varchar(6),
lastname varchar(50),
......
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