Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
emodric committed Feb 5, 2021
2 parents d62cb24 + 2927da7 commit e4a76bb
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions upgrade/db/mysql/ezplatform-3.2.3-to-3.2.4.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
UPDATE ezuser SET email =
CASE
WHEN contentobject_id = 10 THEN '[email protected]'
WHEN contentobject_id = 14 THEN '[email protected]'
END
WHERE contentobject_id IN (10, 14) AND email = '[email protected]';
6 changes: 6 additions & 0 deletions upgrade/db/postgresql/ezplatform-3.2.3-to-3.2.4.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
UPDATE ezuser SET email =
CASE
WHEN contentobject_id = 10 THEN '[email protected]'
WHEN contentobject_id = 14 THEN '[email protected]'
END
WHERE contentobject_id IN (10, 14) AND email = '[email protected]';

0 comments on commit e4a76bb

Please sign in to comment.