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
ad534c90
Commit
ad534c90
authored
9 years ago
by
Frédéric France
Browse files
Options
Downloads
Patches
Plain Diff
Update 3.8.0-3.9.0.sql
parent
51cc252d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
htdocs/install/mysql/migration/3.8.0-3.9.0.sql
+3
-3
3 additions, 3 deletions
htdocs/install/mysql/migration/3.8.0-3.9.0.sql
with
3 additions
and
3 deletions
htdocs/install/mysql/migration/3.8.0-3.9.0.sql
+
3
−
3
View file @
ad534c90
...
...
@@ -34,9 +34,6 @@ ALTER TABLE llx_actioncomm ADD COLUMN email_tocc varchar(256) after email_to;
ALTER
TABLE
llx_actioncomm
ADD
COLUMN
email_tobcc
varchar
(
256
)
after
email_tocc
;
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
);
...
...
@@ -111,6 +108,9 @@ ALTER TABLE llx_commande ADD COLUMN fk_warehouse integer DEFAULT NULL AFTER fk_s
ALTER
TABLE
llx_commande_fournisseur
ADD
COLUMN
billed
smallint
DEFAULT
0
AFTER
fk_statut
;
ALTER
TABLE
llx_commande_fournisseur
ADD
INDEX
billed
(
billed
);
UPDATE
llx_commande_fournisseur
set
billed
=
1
where
statut
=
8
;
UPDATE
llx_commande_fournisseur
set
statut
=
5
where
statut
=
8
and
billed
=
1
;
ALTER
TABLE
llx_product
ADD
COLUMN
cost_price
double
(
24
,
8
)
DEFAULT
NULL
;
ALTER
TABLE
llx_ecm_directories
MODIFY
COLUMN
fullpath
varchar
(
750
);
...
...
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