Hi Alex,
To drop an index on a field in MySQL, you would go to your database and run this query, for example:
ALTER TABLE `users` DROP INDEX `lastName`;
You may want to try that for the fields you are getting errors on. I am not sure if this would fix this problem, but it fixed mine.
Jen