Files
ormar/ormar/models/modelproxy.py
2021-01-03 17:54:09 +01:00

16 lines
360 B
Python

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