diff --git a/activerecord/lib/active_record/store.rb b/activerecord/lib/active_record/store.rb index a610f479f217b805d06a3581e2ed1bcb2c9fe8a1..0f616c537e2ce3af4a0fe76f0d8945c69af30b55 100644 --- a/activerecord/lib/active_record/store.rb +++ b/activerecord/lib/active_record/store.rb @@ -15,6 +15,10 @@ module ActiveRecord # You can set custom coder to encode/decode your serialized attributes to/from different formats. # JSON, YAML, Marshal are supported out of the box. Generally it can be any wrapper that provides +load+ and +dump+. # + # With PostgreSQL, the +store+ feature is not supported for field types such as Hstore + # or JSON because it would add an extra layer of serialization and this is not needed. + # Rely on +store_accessor+ instead. + # # Examples: # # class User < ActiveRecord::Base