We've been happily running Authlogic for our app for a while. Now, however, we would like to turn off the uniqueness constraint on emails when creating users. Is there a simple way to do this?
I was hoping for something like:
acts_as_authentic do |c|
c.validate_uniqueness_of_email_field = false # This doesn't work
end
What is the exact directive to place within the block to turn off the uniqueness constraint?
Many thanks for your help.
- Shailen Tuli