0

它给出了以下错误:

Mysql2::Error: Table 'aperture_developement.content_pages' doesn't exist: SHOW FULL FIELDS FROM `content_pages`

这很奇怪,因为它应该尝试创建该表。

移民:

class CreateContentPages < ActiveRecord::Migration
  def change
    create_table :content_pages do |t|
      t.string :title
      t.string :permalink
      t.string :subtitle
      t.text :content

      t.timestamps
    end
  end
end

完整的跟踪在这里

4

1 回答 1

0

您可能在 ActiveAdmin 中设置了一个过滤器或其他设置,用于检索ContentPages并且您需要将其包装在proc. 看到这个问题:

https://github.com/gregbell/active_admin/issues/1360

于 2012-12-18T08:31:51.060 回答