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
If you follow the documentation, you will be left in a situation where loading the seed data / running spec tests will throw the following error:
rake aborted! ActiveModel::UnknownAttributeError: unknown attribute 'password' for User. /Users/jpoulin/.rvm/gems/ruby-2.4.3/gems/activemodel-5.1.5/lib/active_model/attribute_assignment.rb:48:in `_assign_attribute'
This is likely due to the fact that we remove the password column, and AR no longer sees the attribute password.
password
The text was updated successfully, but these errors were encountered:
I was able to get this to work through adding attr_accessor :password to the User model.
attr_accessor :password
User
Sorry, something went wrong.
No branches or pull requests
If you follow the documentation, you will be left in a situation where loading the seed data / running spec tests will throw the following error:
This is likely due to the fact that we remove the password column, and AR no longer sees the attribute
password
.The text was updated successfully, but these errors were encountered: