次のエラーが発生します。
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