Merge pull request #2486 from jonnybravo0311/master
Changed structure of statistics_shares table
This commit is contained in:
commit
56acee5ea5
@ -182,10 +182,10 @@ CREATE TABLE IF NOT EXISTS `statistics_shares` (
|
||||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`account_id` int(10) unsigned NOT NULL,
|
||||
`block_id` int(10) unsigned NOT NULL,
|
||||
`valid` int(11) NOT NULL,
|
||||
`invalid` int(11) NOT NULL DEFAULT '0',
|
||||
`pplns_valid` int(11) NOT NULL,
|
||||
`pplns_invalid` int(11) NOT NULL DEFAULT '0',
|
||||
`valid` bigint(20) NOT NULL,
|
||||
`invalid` bigint(20) NOT NULL DEFAULT '0',
|
||||
`pplns_valid` bigint(20) NOT NULL,
|
||||
`pplns_invalid` bigint(20) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `account_id` (`account_id`),
|
||||
KEY `block_id` (`block_id`)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user