| 2961 | |
| 2962 | |
| 2963 | class 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 | |
| 2971 | class BigAutoField(AutoFieldMixin, BigIntegerField): |
no outgoing calls