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
The allow_password_change column currently defaults to false. However, null is allowed. FYI: https://thoughtbot.com/blog/avoid-the-threestate-boolean-problem
devise_token_auth/lib/generators/devise_token_auth/templates/devise_token_auth_create_users.rb.erb
Line 15 in 6fa4dee
How about the following
t.boolean :allow_password_change, :default => false, :null => false
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The allow_password_change column currently defaults to false. However, null is allowed.
FYI: https://thoughtbot.com/blog/avoid-the-threestate-boolean-problem
devise_token_auth/lib/generators/devise_token_auth/templates/devise_token_auth_create_users.rb.erb
Line 15 in 6fa4dee
How about the following
The text was updated successfully, but these errors were encountered: