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
8901b99e
Commit
8901b99e
authored
8 years ago
by
Maxime Kohlhaas
Browse files
Options
Downloads
Patches
Plain Diff
Fix import model not correctly saved #5185
parent
f07559a7
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/3.8.0-3.9.0.sql
+1
-0
1 addition, 0 deletions
htdocs/install/mysql/migration/3.8.0-3.9.0.sql
htdocs/install/mysql/tables/llx_import_model.sql
+1
-1
1 addition, 1 deletion
htdocs/install/mysql/tables/llx_import_model.sql
with
2 additions
and
1 deletion
htdocs/install/mysql/migration/3.8.0-3.9.0.sql
+
1
−
0
View file @
8901b99e
...
...
@@ -610,3 +610,4 @@ INSERT INTO llx_c_tva(rowid,fk_pays,taux,recuperableonly,note,active) VALUES (14
-- VMYSQL4.1 ALTER TABLE llx_c_type_resource CHANGE COLUMN rowid rowid integer NOT NULL AUTO_INCREMENT;
ALTER
TABLE
llx_import_model
MODIFY
COLUMN
type
varchar
(
50
);
\ No newline at end of file
This diff is collapsed.
Click to expand it.
htdocs/install/mysql/tables/llx_import_model.sql
+
1
−
1
View file @
8901b99e
...
...
@@ -23,6 +23,6 @@ create table llx_import_model
rowid
integer
AUTO_INCREMENT
PRIMARY
KEY
,
fk_user
integer
DEFAULT
0
NOT
NULL
,
label
varchar
(
50
)
NOT
NULL
,
type
varchar
(
2
0
)
NOT
NULL
,
type
varchar
(
5
0
)
NOT
NULL
,
field
text
NOT
NULL
)
ENGINE
=
innodb
;
\ No newline at end of file
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