I want to disallow non-unique combinations of 5 columns in my interface table.
e.g. for the following columns:
:case_number, :client_name, :matter_name, :country, :engagement_code,
these rows should be allowed:
1,1,1,1,1
1,1,1,1,1
1,1,1,1,1
and these rows should not be allowed:
1,2,1,1,1
2,3,1,1,1
1,1,4,5,1
I figured it out:
In the model add: