From 5240e37ccf760e7e339be070eff333cbb3df7f81 Mon Sep 17 00:00:00 2001 From: Sebastian Grewe Date: Wed, 15 Apr 2015 15:19:24 +0200 Subject: [PATCH] [SQL] Removed coin_address from accounts table, not used anymore --- sql/000_base_structure.sql | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/sql/000_base_structure.sql b/sql/000_base_structure.sql index 48b7b3dd..826e6f2b 100644 --- a/sql/000_base_structure.sql +++ b/sql/000_base_structure.sql @@ -28,11 +28,9 @@ CREATE TABLE IF NOT EXISTS `accounts` ( `token` varchar(65) DEFAULT NULL, `donate_percent` float DEFAULT '0', `ap_threshold` float DEFAULT '0', - `coin_address` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `username` (`username`), - UNIQUE KEY `email` (`email`), - UNIQUE KEY `coin_address` (`coin_address`) + UNIQUE KEY `email` (`email`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `blocks` (