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
1fcdbb24
Commit
1fcdbb24
authored
19 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
New: Ajout de fk_projet dans table des contrats.
parent
22ddfd5f
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
mysql/migration/1.1.0-2.0.0.sql
+8
-6
8 additions, 6 deletions
mysql/migration/1.1.0-2.0.0.sql
mysql/tables/llx_contrat.sql
+1
-1
1 addition, 1 deletion
mysql/tables/llx_contrat.sql
with
9 additions
and
7 deletions
mysql/migration/1.1.0-2.0.0.sql
+
8
−
6
View file @
1fcdbb24
...
...
@@ -326,14 +326,16 @@ delete from llx_rights_def where id=73;
alter
table
llx_facturedet
add
fk_code_ventilation
integer
NOT
NULL
DEFAULT
0
;
alter
table
llx_contrat
change
fk_user_cloture
fk_user_cloture
integer
;
alter
table
llx_contrat
change
fk_user_cloture
fk_user_cloture
integer
;
alter
table
llx_contrat
change
fk_user_mise_en_service
fk_user_mise_en_service
integer
;
alter
table
llx_contrat
add
datec
datetime
after
tms
;
alter
table
llx_contrat
add
date_contrat
datetime
after
datec
;
alter
table
llx_contrat
change
enservice
statut
SMALLINT
(
6
)
DEFAULT
0
;
alter
table
llx_contrat
add
fk_commercial_signature
integer
NOT
NULL
after
fk_soc
;
alter
table
llx_contrat
change
enservice
statut
smallint
(
6
)
default
0
;
alter
table
llx_contrat
add
datec
datetime
after
tms
;
alter
table
llx_contrat
add
date_contrat
datetime
after
datec
;
alter
table
llx_contrat
add
fk_projet
integer
after
fk_soc
;
alter
table
llx_contrat
add
fk_commercial_signature
integer
NOT
NULL
after
fk_projet
;
alter
table
llx_contrat
add
fk_commercial_suivi
integer
NOT
NULL
after
fk_commercial_signature
;
alter
table
llx_contrat
add
facture
smallint
(
6
)
default
0
;
alter
table
llx_facturedet
add
date_start
date
;
alter
table
llx_facturedet
add
date_end
date
;
...
...
This diff is collapsed.
Click to expand it.
mysql/tables/llx_contrat.sql
+
1
−
1
View file @
1fcdbb24
...
...
@@ -33,11 +33,11 @@ create table llx_contrat
fin_validite
datetime
,
date_cloture
datetime
,
fk_soc
integer
NOT
NULL
,
fk_projet
integer
,
fk_commercial_signature
integer
NOT
NULL
,
fk_commercial_suivi
integer
NOT
NULL
,
fk_user_author
integer
NOT
NULL
default
0
,
fk_user_mise_en_service
integer
,
fk_user_cloture
integer
)
type
=
innodb
;
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