I am baking a table that saves all the attempts to login from my customers, and by some reason the bake command adds this rule.
$rules->isUnique(['email'])
This is undesired, because I want to save all the data sent during each loging attempt.
It took me a while to find why there was an error when I was trying to save many records with the same email. in my db this field was not marked as unique but bake decided to apply that rule. The question is if this is a bug or if there is a designed way to avoid that undesired behavior.