Overhauls stats gathering to include the game_id (#1211)

Changed Stats gathering to include game_id.
Removed a duplicate proc that's never used.

This introduces a breaking chance in the feedback table.
The table should be renamed and recreated with the new schema.
This commit is contained in:
Werner
2016-12-12 22:15:09 +01:00
committed by skull132
parent 4d1054b3bb
commit 2c9203951f
3 changed files with 6 additions and 59 deletions

View File

@@ -251,7 +251,7 @@ CREATE TABLE `ss13_directives` (
CREATE TABLE `ss13_feedback` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`time` datetime NOT NULL,
`round_id` int(8) NOT NULL,
`game_id` varchar(32) NOT NULL,
`var_name` varchar(32) CHARACTER SET latin1 NOT NULL,
`var_value` int(16) DEFAULT NULL,
`details` text CHARACTER SET latin1,