Is there some validation rule that will check for unique non-null values?
MySQL allows an index to be UNIQUE, but still allow multiple such columns to be NULL. I.e. it only applies the UNIQUE constraint if the column has a non-NULL value.
Does the same exist in CI validation rules?
-joho