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
3b70013c
Commit
3b70013c
authored
9 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Plain Diff
Merge pull request #2871 from GPCsolutions/dolibarr-2870
Dolibarr 2870
parents
a0956343
fc88df9d
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
+8
-2
8 additions, 2 deletions
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
8 additions
and
3 deletions
htdocs/install/mysql/migration/3.7.0-3.8.0.sql
+
8
−
2
View file @
3b70013c
...
...
@@ -625,16 +625,22 @@ 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
);
ALTER
TABLE
llx_actioncomm
ADD
COLUMN
email_to
varchar
(
256
);
ALTER
TABLE
llx_actioncomm
ADD
COLUMN
errors_to
varchar
(
256
);
-- Recuring events
ALTER
TABLE
llx_actioncomm
ADD
COLUMN
recurid
varchar
(
128
);
ALTER
TABLE
llx_actioncomm
ADD
COLUMN
recurrule
varchar
(
128
);
ALTER
TABLE
llx_actioncomm
ADD
COLUMN
ecurdateend
datetime
;
ALTER
TABLE
llx_actioncomm
ADD
COLUMN
r
ecurdateend
datetime
;
ALTER
TABLE
llx_stcomm
ADD
COLUMN
picto
varchar
(
128
);
...
...
This diff is collapsed.
Click to expand it.
htdocs/install/mysql/tables/llx_actioncomm.key.sql
+
0
−
1
View file @
3b70013c
...
...
@@ -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