nested-hstore
nested-hstore copied to clipboard
Store nested hashes in hstores in ActiveRecord
This will support mixing of string and symbol keys for hash values and should fix #17
Hi, I'm trying to set up some fixtures with some nested-hstore fields and I'm running into trouble. Example: ``` one: user: one custom: :name: :prompt: What is your name? ```...
I'm trying to figure out how to use fields in a form to populate _parts_ of my hstore field. Here's the data in the hstore: ``` custom = { "settings"...
The problem occurs when I try to `#dup` a record with hstore column, my hstore column is before typecast, and it's a string so I get the 'Hstore value should...
Hi there, thank you for this gem which is very useful. My question is, how does this gem different from the nested array support in posgres 9.4? I noticed that...
I just upgraded to 0.0.5 to 0.1.2, and noticed some specs failing. With my Story model like: ``` class Story < ActiveRecord::Base serialize :data, ActiveRecord::Coders::NestedHstore` I had a spec like:...
Before submitting PR I would like to know your opinion. Basically hstore does not support nils - it returns empty strings instead. But while using your gem nils are present...