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
002bebd8
Commit
002bebd8
authored
7 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Fix missing extraparams make sql syntax error
parent
e48ba067
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/4.0.0-5.0.0.sql
+2
-0
2 additions, 0 deletions
htdocs/install/mysql/migration/4.0.0-5.0.0.sql
htdocs/install/mysql/tables/llx_bank_account.sql
+2
-1
2 additions, 1 deletion
htdocs/install/mysql/tables/llx_bank_account.sql
with
4 additions
and
1 deletion
htdocs/install/mysql/migration/4.0.0-5.0.0.sql
+
2
−
0
View file @
002bebd8
...
...
@@ -32,6 +32,8 @@ UPDATE llx_const SET name = __ENCRYPT('THIRDPARTY_DEFAULT_CREATE_CONTACT')__ WHE
ALTER
TABLE
llx_product_lot
MODIFY
COLUMN
entity
integer
DEFAULT
1
;
UPDATE
llx_product_lot
SET
entity
=
1
WHERE
entity
IS
NULL
;
ALTER
TABLE
llx_bank_account
ADD
COLUMN
extraparams
varchar
(
255
);
ALTER
TABLE
llx_societe
ALTER
COLUMN
fk_stcomm
SET
DEFAULT
0
;
ALTER
TABLE
llx_c_actioncomm
ADD
COLUMN
picto
varchar
(
48
);
...
...
This diff is collapsed.
Click to expand it.
htdocs/install/mysql/tables/llx_bank_account.sql
+
2
−
1
View file @
002bebd8
...
...
@@ -58,5 +58,6 @@ create table llx_bank_account
comment
text
,
-- TODO rename in note_private
note_public
text
,
model_pdf
varchar
(
255
),
import_key
varchar
(
14
)
import_key
varchar
(
14
),
extraparams
varchar
(
255
)
-- for other parameters with json format
)
ENGINE
=
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