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
So I ran into this issue after upgrading to the latest version of activerecord-postgres-hstore
activerecord-postgres-hstore
diogob/activerecord-postgres-hstore@ca34391
It seems that commit makes
elsif defined?(::Hstore) && column.type == :hstore && value && value.is_a?(Hash) value = value.to_hstore
execute and since they removed to_hstore in version 0.7.0 it throws a undefined method 'to_hstore' for {}:Hash
to_hstore
undefined method 'to_hstore' for {}:Hash
The text was updated successfully, but these errors were encountered:
This should now be fixed, can you please retest against the latest gem?
Sorry, something went wrong.
Works great! Thanks!
No branches or pull requests
So I ran into this issue after upgrading to the latest version of
activerecord-postgres-hstore
diogob/activerecord-postgres-hstore@ca34391
It seems that commit makes
execute and since they removed
to_hstore
in version 0.7.0 it throws aundefined method 'to_hstore' for {}:Hash
The text was updated successfully, but these errors were encountered: