Delete a "builder.unique" property

Hello everyone,

I would like to delete the email unique property because a user can have more account with the same email. I didn’t find any tip on how to do it, and I really hope someone could help.
Thank you very much and have a nice day.

@mattiav8 you can create a new migration with builder.deleteUnique(from: \.email) to delete the reference. Just make sure you aren’t using the email for anything that should be unique, like logins!

@0xtim Thank you very much! It was really helpful. Have a nice day