Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Partners
CiviCooP
Service National de la Jeunesse
snjmigration
Commits
0cff8d2a
Commit
0cff8d2a
authored
Sep 11, 2020
by
jaapjansma
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
a667a1f4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
scripts/activity_description.sql
scripts/activity_description.sql
+4
-0
No files found.
scripts/activity_description.sql
View file @
0cff8d2a
create
table
activity_description_export
as
SELECT
id
,
comment_external
FROM
`activity`
WHERE
comment_external
is
not
null
;
update
civicrm_event
e
inner
join
civicrm_value_act
a
on
a
.
entity_id
=
e
.
id
inner
join
activity_description_export
ae
on
ae
.
id
=
a
.
act_id
set
e
.
description
=
ae
.
comment_external
;
drop
table
activity_description_export
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment