sbdchd / django-types

:doughnut: Type stubs for Django
MIT License
186 stars 62 forks source link

Add db_comment attribute in Fields classes #250

Closed florentinl closed 2 months ago

florentinl commented 2 months ago

This commit adds the db-comment attribute to the Field class and to the constructor of Fields.

The attribute was added in Django 4.2: https://docs.djangoproject.com/fr/5.0/ref/models/fields/#db-comment.

We use it extensively in our codebase and this leads to currently making Fields untypable for us.

Hope this helps.