We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cd2f63 commit d6d68cbCopy full SHA for d6d68cb
sql/000_base_structure.sql
@@ -182,10 +182,10 @@ CREATE TABLE IF NOT EXISTS `statistics_shares` (
182
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
183
`account_id` int(10) unsigned NOT NULL,
184
`block_id` int(10) unsigned NOT NULL,
185
- `valid` int(11) NOT NULL,
186
- `invalid` int(11) NOT NULL DEFAULT '0',
187
- `pplns_valid` int(11) NOT NULL,
188
- `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',
189
PRIMARY KEY (`id`),
190
KEY `account_id` (`account_id`),
191
KEY `block_id` (`block_id`)
0 commit comments