我收到错误:
PG::UndefinedTable:错误:关系“profiles_rsl_codes”不存在第 5 行:
当我尝试销毁个人资料时。
我有一张桌子rsl_codes_profiles
,在我的个人资料模型中我有
has_many :rsl_codes_profiles, class_name: "RslCodesProfile", dependent: :destroy
在我的RslCodesProfile
课堂上,我有:
class RslCodesProfile < ActiveRecord::Base
belongs_to :rsl_code
belongs_to :profile
validates :rsl_code_id, :presence => true
validates :profile_id, :presence => true
validates :rel_type, :presence => true
end
可能有一些迁移和撤消迁移和更改该表的名称,然后重新迁移以防可能产生影响。
对我的应用程序的全局搜索没有找到对这些应用程序的任何引用profiles_rsl_codes
或ProfilesRslCodes
单数。
错误回溯只指向我做@profile.destroy
的地方,其余的跟踪都是框架的东西。
有任何想法吗?