You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to implement this gem in my new rails app, I'm a RoR newbie and I'm really loving it. I come across this gem, install it and everything was cool. I can register 1 user but when I tried to register a second one it always throw me an error of 'An account already exists for xxx', I want a simple email registration. Anybody has any idea on how to fix this? If you need me to post another file just let me know.
Thanks.
The text was updated successfully, but these errors were encountered:
I have done more tests and I found that the problem is that I'm using SQL Server for my database. I run some tests on Postgres and everything worked like a charm.
Do you know if it's possible to make it work in MS SQL Server?
The problem was in a couple of indixes that throw me a duplication error, these were:
add_index :users, :reset_password_token, unique: true
add_index :users, :confirmation_token, unique: true
Hi everybody,
I want to implement this gem in my new rails app, I'm a RoR newbie and I'm really loving it. I come across this gem, install it and everything was cool. I can register 1 user but when I tried to register a second one it always throw me an error of 'An account already exists for xxx', I want a simple email registration. Anybody has any idea on how to fix this? If you need me to post another file just let me know.
Thanks.
The text was updated successfully, but these errors were encountered: