我正在尝试提供用户行为。
class User < ActiveRecord::Base
# Include default devise modules. Others available are:
# :confirmable, :lockable, :timeoutable and :omniauthable
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :trackable, :validatable
has_many :deeds
end
class Deed < ActiveRecord::Base
belongs_to :user
end
在 Rails 控制台中,我收到此错误: ActiveRecord::UnknownAttributeError: unknown attribute: user_id
有人可以解释一下这有什么问题。谢谢您的帮助。