[SQL] Removed coin_address from accounts table, not used anymore
This commit is contained in:
parent
0edf25798e
commit
5240e37ccf
@ -28,11 +28,9 @@ CREATE TABLE IF NOT EXISTS `accounts` (
|
|||||||
`token` varchar(65) DEFAULT NULL,
|
`token` varchar(65) DEFAULT NULL,
|
||||||
`donate_percent` float DEFAULT '0',
|
`donate_percent` float DEFAULT '0',
|
||||||
`ap_threshold` float DEFAULT '0',
|
`ap_threshold` float DEFAULT '0',
|
||||||
`coin_address` varchar(255) DEFAULT NULL,
|
|
||||||
PRIMARY KEY (`id`),
|
PRIMARY KEY (`id`),
|
||||||
UNIQUE KEY `username` (`username`),
|
UNIQUE KEY `username` (`username`),
|
||||||
UNIQUE KEY `email` (`email`),
|
UNIQUE KEY `email` (`email`)
|
||||||
UNIQUE KEY `coin_address` (`coin_address`)
|
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
CREATE TABLE IF NOT EXISTS `blocks` (
|
CREATE TABLE IF NOT EXISTS `blocks` (
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user