sync karmatotals table

This commit is contained in:
Kyep
2020-10-24 16:38:52 -07:00
parent c7e6906140
commit 9b5f469ac3
3 changed files with 5 additions and 4 deletions
+2 -2
View File
@@ -411,9 +411,9 @@ DROP TABLE IF EXISTS `karmatotals`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `karmatotals` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`byondkey` text NOT NULL,
`byondkey` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL,
`karma` int(11) NOT NULL,
`karmaspent` int(11) NOT NULL DEFAULT '0',
`karmaspent` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=6765 DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;