Rails4 hstore问题

时间:2015-03-07 17:57:16

标签: ruby-on-rails postgresql hstore

我在使用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 
=> [{}, {}]

为什么会这样?

0 个答案:

没有答案