2012-12-17 52 views
0

它給了以下錯誤:的Rails停止對移民

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 

Full trace here

+0

你能粘貼代碼嗎? – mkk

+0

已發佈遷移,需要其他任何東西? –

+1

爲什麼在遷移創建content_pages表時,有關創建table.models的錯誤?它是否比你粘貼的那個更早地被遷移了? – Unixmonkey

回答