MCPcopy
hub / github.com/django/django / AutoField

Class AutoField

django/db/models/fields/__init__.py:2963–2968  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2961
2962
2963class AutoField(AutoFieldMixin, IntegerField, metaclass=AutoFieldMeta):
2964 def get_internal_type(self):
2965 return "AutoField"
2966
2967 def rel_db_type(self, connection):
2968 return IntegerField().db_type(connection=connection)
2969
2970
2971class BigAutoField(AutoFieldMixin, BigIntegerField):

Calls

no outgoing calls