activerecord postgres hstore:再见序列化你好hstore。 加快数据库中的哈希 源码
弃用-只需使用Rails JSON或HStore内置支持即可。 如果您使用的是Rails 4,则不需要此gem,因为ActiveRecord 4提供了开箱即用的HStore类型支持。 ActiveRecord将看到您的HStore列,并为您完成所有工作。 不再需要其他代码。 您可以使用如下迁移进行测试: class CreateTest < ActiveRecord :: Migration def change create_table :tests do | t | t . hstore :data end end end 其型号: class Test < ActiveRecord :: Base # before Rails 4, we'd have to this here: # serialize :data, Active
用户评论