Enforce each item is unique in attribute array
Hi, is there a way to set a constraint on this array attribute, that enforces each item to be unique?
For example it should not allow
[:en, :en]
.
Thanks in advance!2 Replies
Not as an array, no
You can make a custom type, or add a validation to the action/resource etc.
Okay thanks!