Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: sitescripts/urlfixer/schema.sql

Issue 8943045: Implemented extraction of URL Fixer data (Closed)
Patch Set: Larger blacklist Created Nov. 28, 2012, 11:29 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sitescripts/urlfixer/bin/topDomains.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sitescripts/urlfixer/schema.sql
===================================================================
--- a/sitescripts/urlfixer/schema.sql
+++ b/sitescripts/urlfixer/schema.sql
@@ -4,6 +4,7 @@
CREATE TABLE domains(
id INT NOT NULL AUTO_INCREMENT,
domain VARCHAR(50) NOT NULL,
+ forceinclusion TINYINT(1) DEFAULT NULL,
PRIMARY KEY(id),
UNIQUE(domain)
);
« no previous file with comments | « sitescripts/urlfixer/bin/topDomains.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld