[FIXED] Charset on payouts table, non-critical

This commit is contained in:
Sebastian Grewe 2014-03-21 16:05:59 +01:00
parent 9a7d9abb70
commit 3223e40cc6

View File

@ -111,7 +111,7 @@ CREATE TABLE IF NOT EXISTS `payouts` (
`completed` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `account_id` (`account_id`,`completed`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `pool_worker` (
`id` int(255) NOT NULL AUTO_INCREMENT,