Some checks failed
Build and Push Docker Image / build-and-push (push) Has been cancelled
10 lines
294 B
SQL
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%'; |