We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
email
Hi !
I face a problem with spree_auth_devise when i don't want to use email field in Spree::User records.
Spree::User
I'm able to disable validate presence of email like we can do it in Devise: https://github.com/plataformatec/devise/blob/master/lib/devise/models/validatable.rb#L37
But spree_users table has a unique index on email column who prevents me to validate a record without email starting from the second record without email: https://github.com/spree/spree_auth_devise/blob/master/db/migrate/20120605211305_make_users_email_index_unique.rb
spree_users
Could we rollback this migration?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi !
I face a problem with spree_auth_devise when i don't want to use
email
field inSpree::User
records.I'm able to disable validate presence of email like we can do it in Devise:
https://github.com/plataformatec/devise/blob/master/lib/devise/models/validatable.rb#L37
But
spree_users
table has a unique index onemail
column who prevents me to validate a record without email starting from the second record withoutemail
:https://github.com/spree/spree_auth_devise/blob/master/db/migrate/20120605211305_make_users_email_index_unique.rb
Could we rollback this migration?
The text was updated successfully, but these errors were encountered: