2020-12-18 02:29:40 +00:00
|
|
|
-- Add compatibility between url domain type and MX records. @see GH#428
|
2021-02-11 21:47:45 +00:00
|
|
|
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,%';
|