1
0
mirror of https://github.com/GOSTSec/poolserver synced 2025-01-30 00:14:17 +00:00
poolserver/db/create.sql

25 lines
744 B
MySQL
Raw Normal View History

2017-09-07 10:59:27 -04:00
DROP TABLE IF EXISTS `pool_worker`;
2017-09-07 10:35:32 -04:00
CREATE TABLE IF NOT EXISTS `pool_worker`
(
2017-09-07 10:59:27 -04:00
`id` INT(255) NOT NULL AUTO_INCREMENT,
`username` VARCHAR(50) DEFAULT NULL,
`password` VARCHAR(50) DEFAULT NULL,
`mindiff` int(10) unsigned NOT NULL DEFAULT '1',
PRIMARY KEY (`id`)
2017-09-07 10:35:32 -04:00
)
ENGINE = InnoDB;
2017-09-07 10:59:27 -04:00
DROP TABLE IF EXISTS `shares`;
CREATE TABLE `shares` (
`id` INT NOT NULL AUTO_INCREMENT,
`rem_host` varchar(255) NOT NULL,
`username` varchar(120) NOT NULL,
`our_result` tinyint(1) NOT NULL DEFAULT '0',
`upstream_result` tinyint(1) NOT NULL DEFAULT '0',
`reason` varchar(50) DEFAULT NULL,
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`difficulty` int(10) unsigned NOT NULL DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=InnoDB;