After doing a check on all my tables I got these 2 errors: Is this something I should be concerned about? How can I fix it? EDIT: sorry, please move this post to the database board
It's basically a waste of resources if you have two indexes that are indexing identical columns. For example, if both indexes for category are indexing just the one "name" column, I would just drop the index that is NOT the UNIQUE one (since there are more validation restrictions on that one). The UNIQUE one can do more (in terms of validation) than the other one, but the other one can't do anything for you that the UNIQUE one doesn't already do. Confusing enough for ya?
I knew you would stop by this thread Yeah, sure is confusing... so, if I go to phpmyadmin and select the "Repair Table" option will it fix this?
No... because the table isn't broken, it just has a redundant/extra index. Someone (or something) had to add it, so someone (or something) will have to remove it.