[FIX] Base Structure Index

This commit is contained in:
Sebastian Grewe 2014-02-05 10:45:35 +01:00
parent 4b204a5ca3
commit 9bc1a5f0ea

View File

@ -30,7 +30,8 @@ CREATE TABLE IF NOT EXISTS `accounts` (
`coin_address` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `username` (`username`),
UNIQUE KEY `email` (`email`)
UNIQUE KEY `email` (`email`),
UNIQUE KEY `coin_address` (`coin_address`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `blocks` (