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
ab353c80
Commit
ab353c80
authored
18 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
task #4146 : Ajout d'un 4eme champ identifiant professionnel
parent
332cf094
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/2.0.0-2.1.0.sql
+5
-1
5 additions, 1 deletion
mysql/migration/2.0.0-2.1.0.sql
mysql/tables/llx_societe.sql
+4
-3
4 additions, 3 deletions
mysql/tables/llx_societe.sql
with
9 additions
and
4 deletions
mysql/migration/2.0.0-2.1.0.sql
+
5
−
1
View file @
ab353c80
...
...
@@ -43,7 +43,6 @@ ALTER TABLE llx_societe add cond_reglement tinyint;
ALTER
TABLE
llx_societe
add
tva_assuj
tinyint
DEFAULT
'1'
;
ALTER
TABLE
llx_societe
add
email
varchar
(
128
)
after
url
;
ALTER
TABLE
llx_societe
change
active
statut
tinyint
DEFAULT
0
;
ALTER
TABLE
llx_societe
modify
mode_reglement
tinyint
NULL
;
...
...
@@ -54,6 +53,11 @@ ALTER TABLE llx_societe modify services tinyint DEFAULT 0;
ALTER
TABLE
llx_societe
modify
client
tinyint
DEFAULT
0
;
ALTER
TABLE
llx_societe
modify
fournisseur
tinyint
DEFAULT
0
;
ALTER
TABLE
llx_societe
modify
siren
varchar
(
16
);
ALTER
TABLE
llx_societe
modify
siret
varchar
(
16
);
ALTER
TABLE
llx_societe
modify
ape
varchar
(
16
);
ALTER
TABLE
llx_societe
add
idprof4
varchar
(
16
)
after
ape
;
ALTER
TABLE
llx_societe
drop
column
id
;
ALTER
TABLE
llx_societe
modify
parent
integer
;
...
...
This diff is collapsed.
Click to expand it.
mysql/tables/llx_societe.sql
+
4
−
3
View file @
ab353c80
...
...
@@ -46,9 +46,10 @@ create table llx_societe
fk_effectif
integer
DEFAULT
0
,
--
fk_typent
integer
DEFAULT
0
,
--
fk_forme_juridique
integer
DEFAULT
0
,
-- forme juridique INSEE
siren
varchar
(
9
),
-- siren ou RCS
siret
varchar
(
14
),
-- numero de siret
ape
varchar
(
4
),
-- code ape
siren
varchar
(
16
),
-- IDProf1: siren ou RCS pour france
siret
varchar
(
16
),
-- IDProf2: siret pour france
ape
varchar
(
16
),
-- IDProf3: code ape pour france
idprof4
varchar
(
16
),
-- IDProf4: nu pour france
tva_intra
varchar
(
20
),
-- tva intracommunautaire
capital
real
,
-- capital de la socit
description
text
,
--
...
...
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