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
bfe3938c
Commit
bfe3938c
authored
14 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Fix: Add missing ref_ext field
parent
7418331a
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.0.0-3.1.0.sql
+2
-0
2 additions, 0 deletions
htdocs/install/mysql/migration/3.0.0-3.1.0.sql
htdocs/install/mysql/tables/llx_facture_fourn.sql
+4
-0
4 additions, 0 deletions
htdocs/install/mysql/tables/llx_facture_fourn.sql
with
6 additions
and
0 deletions
htdocs/install/mysql/migration/3.0.0-3.1.0.sql
+
2
−
0
View file @
bfe3938c
...
...
@@ -30,4 +30,6 @@ DELETE from llx_const where NAME = 'MAIN_MENUFRONT_BARRETOP';
DELETE
from
llx_const
where
NAME
=
'MAIN_MENU_BARRELEFT'
;
DELETE
from
llx_const
where
NAME
=
'MAIN_MENUFRONT_BARRELEFT'
;
ALTER
TABLE
llx_facture_fourn
ADD
column
ref_ext
varchar
(
30
)
after
entity
;
This diff is collapsed.
Click to expand it.
htdocs/install/mysql/tables/llx_facture_fourn.sql
+
4
−
0
View file @
bfe3938c
...
...
@@ -24,8 +24,12 @@
create
table
llx_facture_fourn
(
rowid
integer
AUTO_INCREMENT
PRIMARY
KEY
,
facnumber
varchar
(
50
)
NOT
NULL
,
entity
integer
DEFAULT
1
NOT
NULL
,
-- multi company id
ref_ext
varchar
(
30
),
-- reference into an external system (not used by dolibarr)
type
smallint
DEFAULT
0
NOT
NULL
,
fk_soc
integer
NOT
NULL
,
...
...
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