· 8 years ago · Jan 23, 2018, 07:20 AM
1--
2-- Table structure for table `pool_worker`
3--
4
5CREATE TABLE IF NOT EXISTS `pool_worker` (
6 `id` int(255) NOT NULL AUTO_INCREMENT,
7 `associatedUserId` int(255) NOT NULL,
8 `username` char(50) DEFAULT NULL,
9 `password` char(255) DEFAULT NULL,
10 `active` tinyint(4) DEFAULT '0',
11 `hashrate` int(11) DEFAULT NULL,
12 PRIMARY KEY (`id`),
13 KEY `p_username` (`username`)
14) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=13 ;