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
d0b43dcf
Commit
d0b43dcf
authored
19 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Fix: Création nouvelle table manquant dans migration
parent
68f9f412
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-2.0.0.sql
+13
-0
13 additions, 0 deletions
mysql/migration/1.1.0-2.0.0.sql
with
13 additions
and
0 deletions
mysql/migration/1.1.0-2.0.0.sql
+
13
−
0
View file @
d0b43dcf
...
...
@@ -5,6 +5,18 @@
-- sans AUCUNE erreur ni warning
-- ;
create
table
llx_product_fournisseur_price_log
(
rowid
integer
AUTO_INCREMENT
PRIMARY
KEY
,
datec
datetime
,
fk_product
integer
,
fk_soc
integer
,
price
real
,
quantity
real
,
fk_user
integer
)
type
=
innodb
;
create
table
llx_usergroup
(
rowid
integer
AUTO_INCREMENT
PRIMARY
KEY
,
...
...
@@ -191,6 +203,7 @@ alter table llx_societe add capital real after tva_intra;
alter
table
llx_societe
add
rubrique
varchar
(
255
);
alter
table
llx_societe
add
remise_client
real
default
0
;
update
llx_societe
set
prefix_comm
=
null
where
prefix_comm
=
''
;
update
llx_societe
set
code_client
=
null
where
code_client
=
''
;
ALTER
TABLE
llx_societe
ADD
UNIQUE
uk_societe_prefix_comm
(
prefix_comm
);
ALTER
TABLE
llx_societe
ADD
UNIQUE
uk_societe_code_client
(
code_client
);
...
...
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