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
be89fddc
Commit
be89fddc
authored
10 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Uniformize field list
parent
1e092003
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
htdocs/install/mysql/migration/3.6.0-3.7.0.sql
+3
-0
3 additions, 0 deletions
htdocs/install/mysql/migration/3.6.0-3.7.0.sql
htdocs/install/mysql/tables/llx_user.sql
+2
-0
2 additions, 0 deletions
htdocs/install/mysql/tables/llx_user.sql
with
5 additions
and
0 deletions
htdocs/install/mysql/migration/3.6.0-3.7.0.sql
+
3
−
0
View file @
be89fddc
...
...
@@ -29,6 +29,9 @@ INSERT INTO llx_c_action_trigger (rowid,code,label,description,elementtype,rang)
INSERT
INTO
llx_c_actioncomm
(
id
,
code
,
type
,
libelle
,
module
,
active
,
position
)
values
(
11
,
'AC_INT'
,
'system'
,
'Intervention on site'
,
NULL
,
1
,
4
);
ALTER
TABLE
llx_user
ADD
COLUMN
fk_user_creat
integer
AFTER
tms
;
ALTER
TABLE
llx_user
ADD
COLUMN
fk_user_modif
integer
AFTER
fk_user_creat
;
ALTER
TABLE
llx_accountingaccount
add
column
entity
integer
DEFAULT
1
NOT
NULL
AFTER
rowid
;
ALTER
TABLE
llx_accountingaccount
add
column
datec
datetime
NOT
NULL
AFTER
entity
;
...
...
This diff is collapsed.
Click to expand it.
htdocs/install/mysql/tables/llx_user.sql
+
2
−
0
View file @
be89fddc
...
...
@@ -28,6 +28,8 @@ create table llx_user
datec
datetime
,
tms
timestamp
,
fk_user_creat
integer
,
fk_user_modif
integer
,
login
varchar
(
24
)
NOT
NULL
,
pass
varchar
(
32
),
pass_crypted
varchar
(
128
),
...
...
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