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
d21bc7ec
Commit
d21bc7ec
authored
13 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Fix: Removed warnings
parent
8e5d33da
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/2.7.0-2.8.0.sql
+17
-1
17 additions, 1 deletion
htdocs/install/mysql/migration/2.7.0-2.8.0.sql
with
17 additions
and
1 deletion
htdocs/install/mysql/migration/2.7.0-2.8.0.sql
+
17
−
1
View file @
d21bc7ec
--
-- $Id$
-- $Id
: 2.7.0-2.8.0.sql,v 1.44 2011/08/14 00:27:18 eldy Exp
$
--
-- Be carefull to requests order.
-- This file must be loaded by calling /install/index.php page
...
...
@@ -195,3 +195,19 @@ ALTER TABLE llx_fichinterdet ADD INDEX idx_fichinterdet_fk_fichinter (fk_fichint
ALTER
TABLE
llx_fichinterdet
ADD
CONSTRAINT
fk_fichinterdet_fk_fichinter
FOREIGN
KEY
(
fk_fichinter
)
REFERENCES
llx_fichinter
(
rowid
);
-- This was created into 2.9.0 but we need them to avoid errors of migration to 2.8 using new classes
alter
table
llx_facture
add
column
localtax1
double
(
24
,
8
)
DEFAULT
0
after
tva
;
alter
table
llx_facture
add
column
localtax2
double
(
24
,
8
)
DEFAULT
0
after
localtax1
;
alter
table
llx_facturedet
add
column
localtax1_tx
double
(
6
,
3
)
DEFAULT
0
after
tva_tx
;
alter
table
llx_facturedet
add
column
localtax2_tx
double
(
6
,
3
)
DEFAULT
0
after
localtax1_tx
;
alter
table
llx_facturedet
add
column
total_localtax1
double
(
24
,
8
)
DEFAULT
0
after
total_tva
;
alter
table
llx_facturedet
add
column
total_localtax2
double
(
24
,
8
)
DEFAULT
0
after
total_localtax1
;
-- This was created into 3.0.0 but we need them to avoid errors of migration to 2.8 using new classes
ALTER
TABLE
llx_propaldet
ADD
COLUMN
fk_parent_line
integer
NULL
AFTER
fk_propal
;
ALTER
TABLE
llx_commandedet
ADD
COLUMN
fk_parent_line
integer
NULL
AFTER
fk_commande
;
ALTER
TABLE
llx_facturedet
ADD
COLUMN
fk_parent_line
integer
NULL
AFTER
fk_facture
;
ALTER
TABLE
llx_facturedet_rec
ADD
COLUMN
fk_parent_line
integer
NULL
AFTER
fk_facture
;
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