Feat(SEO): Rebranded for Fetch Metrics name and added SEO yandex verification meta tags to layout for fetch-metrics.co.uk, fetch-metrics.com, fetchmetrics.co.uk

This commit is contained in:
2025-07-21 12:48:00 +01:00
parent 4e214c3bde
commit 6bb3a77a34
60 changed files with 14895 additions and 472 deletions

View File

@@ -66,6 +66,10 @@ BEGIN
SELECT NEW.id_distraction, 'proximity_metres', CONVERT(OLD.proximity_metres, CHAR), CONVERT(NEW.proximity_metres, CHAR), NEW.id_change_set
WHERE NOT (OLD.proximity_metres <=> NEW.proximity_metres)
UNION
-- Changed notes
SELECT NEW.id_distraction, 'notes', OLD.notes, NEW.notes, NEW.id_change_set
WHERE NOT (OLD.notes <=> NEW.notes)
UNION
-- Changed active
SELECT NEW.id_distraction, 'active', CONVERT(CONVERT(OLD.active, SIGNED), CHAR), CONVERT(CONVERT(NEW.active, SIGNED), CHAR), NEW.id_change_set
WHERE NOT (OLD.active <=> NEW.active)