Create Table: CREATE TABLE `fuinfo` ( `fid` int(10) unsigned NOT NULL, `name` varchar(40) NOT NULL, `email` varchar(128) NOT NULL, UNIQUE KEY `email` (`email
Simply you can use the following SQL Script to delete the index in MySQL:
alter table fuinfo drop index email;