1
我有一個遷移AddAuthenticableToUser。 (rake db:migrate:up VERSION = ..)工作正常,但是當我嘗試回滾遷移時(rake db:migrate:down VERSION = ..)它不起作用。任何錯誤或警告。你能幫我解決這個問題嗎?爲什麼遷移不起作用
def self.up
change_table :users do |t|
t.token_authenticatable
end
add_index :users, :authentication_token, :unique => true
end
def self.down
remove_index :users, :authentication_token
remove_column :users, :authentication_token
end
沒有錯誤?哪個版本的rails是這個? – corroded 2011-06-01 10:06:42