-- Fixes existing notification rows whose link points to the never-existed
-- /requerimiento/:id route instead of the real /solicitud/:id page.
UPDATE notifications
SET link = REPLACE(link, '/requerimiento/', '/solicitud/')
WHERE link LIKE '/requerimiento/%';
