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 */; |