21 lines
411 B
Python
21 lines
411 B
Python
from ormar.models.mixins import (
|
|
ExcludableMixin,
|
|
MergeModelMixin,
|
|
PrefetchQueryMixin,
|
|
PydanticMixin,
|
|
SavePrepareMixin,
|
|
)
|
|
|
|
|
|
class ModelTableProxy(
|
|
PrefetchQueryMixin,
|
|
MergeModelMixin,
|
|
SavePrepareMixin,
|
|
ExcludableMixin,
|
|
PydanticMixin,
|
|
):
|
|
"""
|
|
Used to combine all mixins with different set of functionalities.
|
|
One of the bases of the ormar Model class.
|
|
"""
|