I did a mistake in my rails app, and I didn't enforce the uniqueness of logins. Now I'd like to clean this mess by finding and removing duplicates (manually) in my code.
Is there a nice command I could enter in the Rails console that would let me find those duplicates ? Eg. find two users with the same login, and maybe make an array of array of duplicates ?
Assuming your model is
User
and you are looking for duplicate attributelogin
, you should be able to do something like this:Of course, you can change the select to include whatever attributes you will need in order to decide what to do about the duplicates.
EDIT for Mongoid, look at this link