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 56
def parent_class_name
if custom_parent?
parent
elsif database
abstract_class_name
else
parent
end
end