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
7855cf70
Commit
7855cf70
authored
16 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
New: Can edit sending methods
parent
5c75347f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
mysql/migration/2.4.0-2.5.0.sql
+1
-1
1 addition, 1 deletion
mysql/migration/2.4.0-2.5.0.sql
mysql/migration/2.5.0-2.6.0.sql
+1
-1
1 addition, 1 deletion
mysql/migration/2.5.0-2.6.0.sql
mysql/tables/llx_expedition_methode.sql
+1
-1
1 addition, 1 deletion
mysql/tables/llx_expedition_methode.sql
with
3 additions
and
3 deletions
mysql/migration/2.4.0-2.5.0.sql
+
1
−
1
View file @
7855cf70
...
...
@@ -104,7 +104,7 @@ insert into llx_c_type_contact(rowid, element, source, code, libelle, active ) v
alter
table
llx_product_stock
add
column
pmp
double
(
24
,
8
)
default
0
NOT
NULL
;
alter
table
llx_expedition_methode
change
statut
active
tinyint
DEFAULT
1
;
alter
table
llx_expedition_methode
change
statut
active
;
INSERT
INTO
llx_expedition_methode
(
rowid
,
code
,
libelle
,
description
,
active
)
VALUES
(
1
,
'CATCH'
,
'Catch'
,
'Catch by client'
,
1
);
INSERT
INTO
llx_expedition_methode
(
rowid
,
code
,
libelle
,
description
,
active
)
VALUES
(
2
,
'TRANS'
,
'Transporter'
,
'Generic transporter'
,
1
);
...
...
This diff is collapsed.
Click to expand it.
mysql/migration/2.5.0-2.6.0.sql
+
1
−
1
View file @
7855cf70
...
...
@@ -6,7 +6,7 @@
-- when current version is 2.4.0 or higher.
--
alter
table
llx_expedition_methode
change
statut
active
;
alter
table
llx_expedition_methode
change
statut
active
tinyint
DEFAULT
1
;
update
llx_actioncomm
set
datep
=
datea
where
datep
is
null
;
...
...
This diff is collapsed.
Click to expand it.
mysql/tables/llx_expedition_methode.sql
+
1
−
1
View file @
7855cf70
...
...
@@ -25,5 +25,5 @@ create table llx_expedition_methode
code
varchar
(
30
)
NOT
NULL
,
libelle
varchar
(
50
)
NOT
NULL
,
description
text
,
statut
tinyint
DEFAULT
0
active
tinyint
DEFAULT
0
)
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