Used by the migration
template to determine the parent name
of the model
# File activerecord/lib/rails/generators/active_record/model/model_generator.rb, line 51
def parent_class_name
if parent
parent
elsif database
abstract_class_name
else
"ApplicationRecord"
end
end