Hi,
I've a table with two unique keys on the same column. I've no idea how the second one came about. Here's is a partial output from show create table profiles:
Code:
Create Table: CREATE TABLE 'profiles' {
...
UNIQUE KEY 'email' (email),
UNIQUE KEY 'email_2' (email)
) ENGINE=InnoDB DEFAULT CHARSET=latin1
How do I drop the second unique key?
Thanks in anticipation
