我想用戶參考添加到我的職位表與下面的代碼:未定義的方法「add_reference」
class AddUserIdToPosts < ActiveRecord::Migration
def change
add_reference :posts, :user, index: true
end
end
,但我收到一條錯誤消息:
undefined method 'add_reference'
有誰知道如何解決這個問題?
我使用Rails 3.2.13
這可能幫助? http://stackoverflow.com/questions/4954969/rails-3-migrations-adding-reference-column – dax