はじめに
DBにtypeという名前のカラムがある時にエラーが出たので、その対応をまとめます。
問題
エラー文
ActiveRecord::SubclassNotFound (Invalid single-table inheritance type: xxx is not a subclass of yyy):
解決方法
typeカラムの名前を変更することでも対応できますが、それが難しい場合は以下のようにすることで対応できます。
class User < ApplicationRecord
self.inheritance_column = :_type_disabled # この行を追加
end
参考