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

Fix length of password too low (password was truncated making them

inoperent)
parent e470869a
No related branches found
No related tags found
No related merge requests found
......@@ -29,6 +29,8 @@ ALTER TABLE llx_don ADD COLUMN fk_country integer NOT NULL DEFAULT 0 after count
UPDATE llx_commande_fourn set billed=1 where statut = 8;
UPDATE llx_commande_fourn set statut=5 where statut = 8 and billed=1;
ALTER TABLE llx_user MODIFY COLUMN pass varchar(128);
ALTER TABLE llx_user MODIFY COLUMN pass_temp varchar(128);
ALTER TABLE llx_askpricesupplier RENAME TO llx_supplier_proposal;
ALTER TABLE llx_askpricesupplierdet RENAME TO llx_supplier_proposaldet;
......
......@@ -34,9 +34,9 @@ create table llx_user
fk_user_creat integer,
fk_user_modif integer,
login varchar(24) NOT NULL,
pass varchar(32),
pass varchar(128),
pass_crypted varchar(128),
pass_temp varchar(32), -- temporary password when asked for forget password
pass_temp varchar(128), -- temporary password when asked for forget password
api_key varchar(128), -- key to use REST API by this user
gender varchar(10),
civility varchar(6),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment