-
Notifications
You must be signed in to change notification settings - Fork 203
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #295 from duckduckgo/sam/new-cdns
Add new CDNs and CPMs to categorization table
- Loading branch information
Showing
3 changed files
with
28 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
build-data/static/category_patches/002 - TR Update Nov 2024.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
INSERT INTO trackers (domain, "CDN") VALUES | ||
('website-files.com', 1), | ||
('hubspotusercontent-na1.net', 1), | ||
('azurefd.net', 1), | ||
('transcend-cdn.com', 1), | ||
('site.com', 1), | ||
('ck.page', 1), | ||
('afcdn.com', 1), | ||
('sitescdn.net', 1), | ||
('squarespace.com', 1), | ||
('ezojs.com', 1) | ||
ON CONFLICT(domain) DO UPDATE SET "CDN" = 1; | ||
INSERT INTO trackers (domain, "Consent Management Platform") VALUES | ||
('cdn-cookieyes.com', 1) | ||
ON CONFLICT(domain) DO UPDATE SET "Consent Management Platform" = 1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters