3

我创建了以下模型,

class CreateUsers < ActiveRecord::Migration
  def change
    create_table :users do |t|
      t.string :name
      t.string :email
      t.string :password_digest
      t.string :location_type
      t.integer :location_id
      t.integer :categories, array: true, default: '{}'

      t.timestamps
    end
    add_index :user, :email, unique: true
  end
end

我还在我的 Gemfile 中添加了 pg 数组解析器 gem。

问题是每当我创建用户时,它都会告诉我类别是未知属性。

User.create(name: "Bob", email: "bob@gmail.com", 
password: "password", password_confirmation: "password", categories: [1, 2])

The Error:

unknown attribute: categories

出了什么问题,我该如何解决?

更新:

运行后rake db:drop db:create db:migrate我遇到了这个新错误。

PG::Error: ERROR:  column "categories" is of type integer[] but default expression is of type integer
HINT:  You will need to rewrite or cast the expression.
4

1 回答 1

6

postgres_ext为 Rails3 添加数组支持的gem 理解这default: '{}'意味着 SQL 应该说'{}'::integer[],但我猜 Rails4 驱动程序有点困惑并说'{}'.to_i或类似的东西;抱歉,我没有在任何地方设置 Rails4,所以我不能更具体,但它确实符合您看到的错误。

您可以尝试使用 Ruby 数组而不是 PostgreSQL 样式的数组字符串:

t.integer :categories, array: true, default: []

这将触发正确的 to-sql-ification ,postgres_ext因此它也应该在 Rails4 中做正确的事情。

于 2013-07-18T19:33:51.843 回答