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
38a9f6ed
Commit
38a9f6ed
authored
9 years ago
by
Raphaël Doursenaud
Browse files
Options
Downloads
Patches
Plain Diff
Drop deprecated fields
Fix #2870
parent
e075fce5
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.7.0-3.8.0.sql
+5
-1
5 additions, 1 deletion
htdocs/install/mysql/migration/3.7.0-3.8.0.sql
htdocs/install/mysql/tables/llx_actioncomm.key.sql
+0
-1
0 additions, 1 deletion
htdocs/install/mysql/tables/llx_actioncomm.key.sql
with
5 additions
and
2 deletions
htdocs/install/mysql/migration/3.7.0-3.8.0.sql
+
5
−
1
View file @
38a9f6ed
...
...
@@ -625,8 +625,12 @@ ALTER TABLE llx_user ADD gender VARCHAR(10);
ALTER
TABLE
llx_user
ADD
api_key
VARCHAR
(
128
)
DEFAULT
NULL
AFTER
pass_temp
;
ALTER
TABLE
llx_user
ADD
INDEX
idx_user_api_key
(
api_key
);
-- Deprecated fields
ALTER
TABLE
llx_actioncomm
DROP
COLUMN
datea
;
ALTER
TABLE
llx_actioncomm
DROP
INDEX
idx_actioncomm_datea
;
ALTER
TABLE
llx_actioncomm
DROP
COLUMN
datea2
;
-- Email tracking
ALTER
TABLE
llx_actioncomm
ADD
COLUMN
email_msgid
varchar
(
256
);
ALTER
TABLE
llx_actioncomm
ADD
COLUMN
email_from
varchar
(
256
);
ALTER
TABLE
llx_actioncomm
ADD
COLUMN
email_sender
varchar
(
256
);
...
...
This diff is collapsed.
Click to expand it.
htdocs/install/mysql/tables/llx_actioncomm.key.sql
+
0
−
1
View file @
38a9f6ed
...
...
@@ -18,7 +18,6 @@
-- ===========================================================================
ALTER
TABLE
llx_actioncomm
ADD
INDEX
idx_actioncomm_datea
(
datea
);
ALTER
TABLE
llx_actioncomm
ADD
INDEX
idx_actioncomm_fk_soc
(
fk_soc
);
ALTER
TABLE
llx_actioncomm
ADD
INDEX
idx_actioncomm_fk_contact
(
fk_contact
);
ALTER
TABLE
llx_actioncomm
ADD
INDEX
idx_actioncomm_code
(
code
);
...
...
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