它给出了以下错误:
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