Simplified Field.contribute_to_class().

This commit is contained in:
Jon Dufresne 2019-04-28 22:54:32 -07:00 committed by Mariusz Felisiak
parent 98296f86b3
commit dbe436a9a9
1 changed files with 1 additions and 4 deletions

View File

@ -732,10 +732,7 @@ class Field(RegisterLookupMixin):
"""
self.set_attributes_from_name(name)
self.model = cls
if private_only:
cls._meta.add_field(self, private=True)
else:
cls._meta.add_field(self)
cls._meta.add_field(self, private=private_only)
if self.column:
# Don't override classmethods with the descriptor. This means that
# if you have a classmethod and a field with the same name, then