提交 1478ebf6 编写于 作者: R Robin Dupret

Hstore and JSON fields are not supported with store

The use of `store` on Hstore fields (for instance) is not needed
because serialization aimed to interact with Ruby objects and not
with provided field types
上级 97ad84e1
......@@ -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
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册