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

Unified Diff: sitescripts/filterhits/schema.sql

Issue 29344572: Noissue - Removed obsolete sitescripts.filterhits package (Closed)
Patch Set: Created May 26, 2016, 12:05 p.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/filterhits/geometrical_mean.py ('k') | sitescripts/filterhits/static/datatables/jquery.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sitescripts/filterhits/schema.sql
===================================================================
deleted file mode 100644
--- a/sitescripts/filterhits/schema.sql
+++ /dev/null
@@ -1,16 +0,0 @@
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `filters` (
- `sha1` BINARY(20) NOT NULL,
- `filter` TEXT CHARACTER SET utf8 NOT NULL,
- PRIMARY KEY(sha1)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
-
-CREATE TABLE `frequencies` (
- `filter_sha1` BINARY(20) NOT NULL,
- `domain` varchar(255) CHARACTER SET utf8 NOT NULL,
- `frequency` int(10) unsigned DEFAULT 0 NOT NULL,
- `timestamp` timestamp NOT NULL,
- PRIMARY KEY(domain, filter_sha1)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
-/*!40101 SET character_set_client = @saved_cs_client */;
« no previous file with comments | « sitescripts/filterhits/geometrical_mean.py ('k') | sitescripts/filterhits/static/datatables/jquery.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld