它发出以下错误:
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
答案 0 :(得分:0)
您可能在ActiveAdmin中设置了一个过滤器或其他设置,用于检索ContentPages
,并且您需要将其包含在proc
中。看到这个问题: