Skip to content

Commit 8cf7c99

Browse files
committed
[FIX] Added 0.0.14 to base structure
1 parent 939cb80 commit 8cf7c99

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sql/000_base_structure.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ CREATE TABLE IF NOT EXISTS `settings` (
144144
UNIQUE KEY `setting` (`name`)
145145
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
146146

147-
INSERT INTO `settings` (`name`, `value`) VALUES ('DB_VERSION', '0.0.13');
147+
INSERT INTO `settings` (`name`, `value`) VALUES ('DB_VERSION', '0.0.14');
148148

149149
CREATE TABLE IF NOT EXISTS `shares` (
150150
`id` bigint(30) NOT NULL AUTO_INCREMENT,
@@ -242,7 +242,7 @@ CREATE TABLE IF NOT EXISTS `transactions` (
242242
CREATE TABLE `statistics_users` (
243243
`id` int(11) NOT NULL AUTO_INCREMENT,
244244
`account_id` int(11) NOT NULL,
245-
`hashrate` int(11) NOT NULL,
245+
`hashrate` bigint(20) unsigned NOT NULL,
246246
`workers` int(11) NOT NULL,
247247
`sharerate` float NOT NULL,
248248
`timestamp` int(11) NOT NULL,

0 commit comments

Comments
 (0)