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

inoperent)
This commit is contained in:
Laurent Destailleur 2015-12-06 19:17:39 +01:00
parent e470869afe
commit 984068c136
2 changed files with 4 additions and 2 deletions

View File

@ -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;

View File

@ -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),