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

Side by Side Diff: sitescripts/filterhits/schema.sql

Issue 4615801646612480: Issue 395 - Filter hits statistics backend (Closed)
Patch Set: Created Dec. 19, 2014, 1:16 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 /*!40101 SET @saved_cs_client = @@character_set_client */;
2 /*!40101 SET character_set_client = utf8 */;
3 CREATE TABLE `filters` (
4 `md5` BINARY(16) NOT NULL,
5 `filter` TEXT CHARACTER SET utf8 NOT NULL,
6 PRIMARY KEY(md5)
7 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
8 /*!40101 SET character_set_client = @saved_cs_client */;
9
10 /*!40101 SET @saved_cs_client = @@character_set_client */;
11 /*!40101 SET character_set_client = utf8 */;
Sebastian Noack 2015/02/11 16:00:12 This is redundant with the above. Not that we have
kzar 2015/02/17 10:52:24 Done.
Sebastian Noack 2015/02/17 14:59:17 I just realized a typo in my comment above. I actu
12 CREATE TABLE `geometrical_mean` (
13 `filter_md5` BINARY(16) NOT NULL,
14 `domain` varchar(255) CHARACTER SET utf8 NOT NULL,
15 `hits` int(10) unsigned DEFAULT 0 NOT NULL,
16 `timestamp` timestamp NOT NULL,
17 PRIMARY KEY(domain, filter_md5)
18 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
19 /*!40101 SET character_set_client = @saved_cs_client */;
OLDNEW

Powered by Google App Engine
This is Rietveld