Files
knet/migrations/tracking/000003_cleanup_ignored_tracking_events.up.sql
Jurajk 86b98e8c16
Some checks failed
Build and Push Docker Image / build-and-push (push) Has been cancelled
clean up stats
2025-12-20 21:58:52 +01:00

10 lines
294 B
SQL

-- Remove tracking events that match current ignored patterns
-- Remove visits to ignored paths
DELETE FROM user_visits WHERE
'path' = '/tracking' OR
'path' = '/metrics' OR
'path' LIKE '/css/%' OR
'path' LIKE '/js/%' OR
'path' = '/boxes/ws' OR
'path' LIKE '%favicon%';