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

Unified Diff: sitescripts/reports/schema.sql

Issue 8625042: Reports - user usefullness (Closed)
Patch Set: Reports - user usefulness Created Oct. 29, 2012, 12:35 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/reports/bin/updateDigests.py ('k') | sitescripts/reports/static/lib/reportsview.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sitescripts/reports/schema.sql
===================================================================
--- a/sitescripts/reports/schema.sql
+++ b/sitescripts/reports/schema.sql
@@ -11,7 +11,8 @@
CREATE TABLE `users` (
`id` varchar(40) NOT NULL,
`reports` int(10) unsigned NOT NULL DEFAULT '0',
- `rating` int(11) NOT NULL DEFAULT '0',
+ `positive` int(10) unsigned NOT NULL DEFAULT '0',
+ `negative` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
« no previous file with comments | « sitescripts/reports/bin/updateDigests.py ('k') | sitescripts/reports/static/lib/reportsview.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld