How to make Rails 4.2 work with Postgres Jsonb?

大憨熊 提交于 2019-11-29 10:24:25

It's part of the not yet released version of Rails 4.2 (currently 4.2.0.rc3). To use the datatype, specify the jsonb type when creating a table:

create_table :users do |t|
  t.jsonb :extra_info
end

or add to an existing table

add_column :users, :extra_info, :jsonb

Since jsonb is virtually the same as json except for the internal storage, the way you work with the column is the same as well.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!