他の回答で見たことがないものを追加したかっただけです。
Python クラスとは異なり、モデルの継承ではフィールド名の非表示は許可されていません。
たとえば、次のようなユースケースで問題を実験しました。
django の auth PermissionMixinから継承するモデルがありました:
class PermissionsMixin(models.Model):
"""
A mixin class that adds the fields and methods necessary to support
Django's Group and Permission model using the ModelBackend.
"""
is_superuser = models.BooleanField(_('superuser status'), default=False,
help_text=_('Designates that this user has all permissions without '
'explicitly assigning them.'))
groups = models.ManyToManyField(Group, verbose_name=_('groups'),
blank=True, help_text=_('The groups this user belongs to. A user will '
'get all permissions granted to each of '
'his/her group.'))
user_permissions = models.ManyToManyField(Permission,
verbose_name=_('user permissions'), blank=True,
help_text='Specific permissions for this user.')
class Meta:
abstract = True
# ...
related_name
次に、特にgroups
フィールドの をオーバーライドしたいミックスインを作成しました。したがって、多かれ少なかれ次のようになりました。
class WithManagedGroupMixin(object):
groups = models.ManyToManyField(Group, verbose_name=_('groups'),
related_name="%(app_label)s_%(class)s",
blank=True, help_text=_('The groups this user belongs to. A user will '
'get all permissions granted to each of '
'his/her group.'))
この2つのミックスインを次のように使用していました:
class Member(PermissionMixin, WithManagedGroupMixin):
pass
ええ、私はこれがうまくいくと思っていましたが、うまくいきませんでした。しかし、私が得たエラーはモデルをまったく指していなかったので、問題はより深刻でした。何が問題なのかわかりませんでした。
これを解決しようとしているときに、ランダムに mixin を変更して抽象モデル mixin に変換することにしました。エラーは次のように変わりました。
django.core.exceptions.FieldError: Local field 'groups' in class 'Member' clashes with field of similar name from base class 'PermissionMixin'
ご覧のとおり、このエラーは何が起こっているかを説明しています。
私の意見では、これは大きな違いでした:)