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
4c68f4f4
Commit
4c68f4f4
authored
15 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Add tables for extra fields.
parent
2f80ec68
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
htdocs/install/mysql/migration/2.7.0-2.8.0.sql
+1
-1
1 addition, 1 deletion
htdocs/install/mysql/migration/2.7.0-2.8.0.sql
htdocs/install/mysql/tables/llx_extra_fields_options.key.sql
+1
-1
1 addition, 1 deletion
htdocs/install/mysql/tables/llx_extra_fields_options.key.sql
with
2 additions
and
2 deletions
htdocs/install/mysql/migration/2.7.0-2.8.0.sql
+
1
−
1
View file @
4c68f4f4
...
...
@@ -79,7 +79,7 @@ create table llx_extra_fields_options
rank
integer
)
type
=
innodb
;
ALTER
TABLE
llx_extra_fields_options
ADD
INDEX
idx_extra_fields_options_fk_extra_fields
(
fk_extra_fields
,
entity
);
ALTER
TABLE
llx_extra_fields_options
ADD
INDEX
idx_extra_fields_options_fk_extra_fields
(
fk_extra_fields
);
ALTER
TABLE
llx_extra_fields_options
ADD
CONSTRAINT
fk_extra_fields_options_fk_extra_fields
FOREIGN
KEY
(
fk_extra_fields
)
REFERENCES
llx_extra_fields
(
rowid
);
-- Create table of values
...
...
This diff is collapsed.
Click to expand it.
htdocs/install/mysql/tables/llx_extra_fields_options.key.sql
+
1
−
1
View file @
4c68f4f4
...
...
@@ -19,6 +19,6 @@
-- ============================================================================
ALTER
TABLE
llx_extra_fields_options
ADD
INDEX
idx_extra_fields_options_fk_extra_fields
(
fk_extra_fields
,
entity
);
ALTER
TABLE
llx_extra_fields_options
ADD
INDEX
idx_extra_fields_options_fk_extra_fields
(
fk_extra_fields
);
ALTER
TABLE
llx_extra_fields_options
ADD
CONSTRAINT
fk_extra_fields_options_fk_extra_fields
FOREIGN
KEY
(
fk_extra_fields
)
REFERENCES
llx_extra_fields
(
rowid
);
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