mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-10 05:51:53 +08:00
12 lines
498 B
Python
12 lines
498 B
Python
from .base import Model as Model
|
|
|
|
from .fields import (AutoField as AutoField,
|
|
IntegerField as IntegerField,
|
|
SmallIntegerField as SmallIntegerField,
|
|
CharField as CharField,
|
|
Field as Field,
|
|
SlugField as SlugField,
|
|
TextField as TextField)
|
|
from .fields.related import (ForeignKey as ForeignKey)
|
|
from .deletion import CASCADE as CASCADE
|
|
from .query import QuerySet as QuerySet |