Skip to content

Commit

Permalink
Append changes instead of overriding
Browse files Browse the repository at this point in the history
close #428
  • Loading branch information
Mazamazine authored and camlafit committed Sep 28, 2023
1 parent 7e05910 commit f56809f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion install/upgrades/3.5.0.4.sql
@@ -1,2 +1,3 @@
-- Add compatibility between url domain type and MX records. @see GH#428
UPDATE domaines_type SET compatibility = 'txt,defmx,defmx2,mx,mx2' WHERE name = 'url';
UPDATE domaines_type SET compatibility=CONCAT_WS(',', compatibility, 'mx') WHERE name='url' AND compatibility NOT LIKE '%,mx%' AND compatibility NOT LIKE 'mx,%';
UPDATE domaines_type SET compatibility=CONCAT_WS(',', compatibility, 'mx2') WHERE name='url' AND compatibility NOT LIKE '%,mx2%' AND compatibility NOT LIKE 'mx2,%';

0 comments on commit f56809f

Please sign in to comment.