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
6f211cc6
Commit
6f211cc6
authored
20 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Fix: Manquait quelques tables dans script migration
parent
4475aadb
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
mysql/migration/1.1.0-1.2.0-RC1.sql
+54
-0
54 additions, 0 deletions
mysql/migration/1.1.0-1.2.0-RC1.sql
with
54 additions
and
0 deletions
mysql/migration/1.1.0-1.2.0-RC1.sql
+
54
−
0
View file @
6f211cc6
...
...
@@ -339,7 +339,61 @@ create table llx_commandedet
price
real
)
type
=
innodb
;
create
table
llx_commande_fournisseur
(
rowid
integer
AUTO_INCREMENT
PRIMARY
KEY
,
tms
timestamp
,
fk_soc
integer
,
fk_soc_contact
integer
,
fk_projet
integer
DEFAULT
0
,
ref
varchar
(
30
)
NOT
NULL
,
date_creation
datetime
,
date_valid
datetime
,
date_cloture
datetime
,
date_commande
date
,
fk_methode_commande
integer
default
0
,
fk_user_author
integer
,
fk_user_valid
integer
,
fk_user_cloture
integer
,
source
smallint
NOT
NULL
,
fk_statut
smallint
default
0
,
amount_ht
real
default
0
,
remise_percent
real
default
0
,
remise
real
default
0
,
tva
real
default
0
,
total_ht
real
default
0
,
total_ttc
real
default
0
,
note
text
,
model_pdf
varchar
(
50
),
UNIQUE
INDEX
(
ref
)
)
type
=
innodb
;
create
table
llx_commande_fournisseur_log
(
rowid
integer
AUTO_INCREMENT
PRIMARY
KEY
,
tms
timestamp
,
datelog
datetime
NOT
NULL
,
fk_commande
integer
NOT
NULL
,
fk_statut
smallint
NOT
NULL
,
fk_user
integer
NOT
NULL
)
type
=
innodb
;
create
table
llx_commande_fournisseurdet
(
rowid
integer
AUTO_INCREMENT
PRIMARY
KEY
,
fk_commande
integer
,
fk_product
integer
,
ref
varchar
(
50
),
label
varchar
(
255
),
description
text
,
tva_tx
real
DEFAULT
19
.
6
,
qty
real
,
remise_percent
real
DEFAULT
0
,
remise
real
DEFAULT
0
,
subprice
real
,
price
real
)
type
=
innodb
;
create
table
llx_societe_rib
...
...
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