I've declared a rule to set a unique name like so:
->set_rules('name', 'Name', 'is_unique[table.name]')
on the insert-event that works fine.
on the update-event it forces an error because there is already an entry with this name (that one I'm dealing with).
Are there any suggestions?