我在使用hstore
我的迁移代码
class CreateProperties < ActiveRecord::Migration
def change
execute 'CREATE EXTENSION IF NOT EXISTS hstore'
enable_extension 'hstore'
create_table :properties do |t|
...
t.hstore :image, array: true, default: []
...
end
问题是我试图创建像x = Property.create(image:['a','b'])
我得到了
x.image
=> [{}, {}]
为什么会这样?