Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dolibarr
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software_Artifact_Infrastructure_Repository
dolibarr
Commits
984068c1
Commit
984068c1
authored
9 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
htdocs/install/mysql/migration/3.8.0-3.9.0.sql
+2
-0
2 additions, 0 deletions
htdocs/install/mysql/migration/3.8.0-3.9.0.sql
htdocs/install/mysql/tables/llx_user.sql
+2
-2
2 additions, 2 deletions
htdocs/install/mysql/tables/llx_user.sql
with
4 additions
and
2 deletions
htdocs/install/mysql/migration/3.8.0-3.9.0.sql
+
2
−
0
View file @
984068c1
...
...
@@ -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
;
...
...
This diff is collapsed.
Click to expand it.
htdocs/install/mysql/tables/llx_user.sql
+
2
−
2
View file @
984068c1
...
...
@@ -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
),
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment