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
20b176da
Commit
20b176da
authored
18 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
On recré table paiement fournisseurs pour ceux qui ont raté cette table.
parent
f4dc5df6
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
mysql/migration/2.0.0-2.1.0.sql
+11
-0
11 additions, 0 deletions
mysql/migration/2.0.0-2.1.0.sql
with
11 additions
and
0 deletions
mysql/migration/2.0.0-2.1.0.sql
+
11
−
0
View file @
20b176da
...
...
@@ -6,6 +6,17 @@
--
create
table
llx_paiementfourn_facturefourn
(
rowid
integer
AUTO_INCREMENT
PRIMARY
KEY
,
fk_paiementfourn
INT
(
11
)
DEFAULT
NULL
,
fk_facturefourn
INT
(
11
)
DEFAULT
NULL
,
amount
DOUBLE
DEFAULT
'0'
)
TYPE
=
innodb
;
ALTER
TABLE
llx_paiementfourn_facturefourn
ADD
INDEX
idx_paiementfourn_facturefourn_fk_facture
(
fk_facturefourn
);
ALTER
TABLE
llx_paiementfourn_facturefourn
ADD
INDEX
idx_paiementfourn_facturefourn_fk_paiement
(
fk_paiementfourn
);
drop
table
if
exists
llx_commande_model_pdf
;
drop
table
if
exists
llx_commande_fournisseur_model_pdf
;
...
...
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