diff options
| author | 2024-08-24 23:37:14 +0100 | |
|---|---|---|
| committer | 2024-08-24 23:37:45 +0100 | |
| commit | 6adc7e46d064a2012059d600e7eff345d5cbcc67 (patch) | |
| tree | 0ff5625ac8989b64204d47be6cf8329dfef8f334 /thallium-backend/src/orm/users.py | |
| parent | Mount db migrations as a volume in dev (diff) | |
Move UUIDBase to its own mixin
Diffstat (limited to 'thallium-backend/src/orm/users.py')
| -rw-r--r-- | thallium-backend/src/orm/users.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/thallium-backend/src/orm/users.py b/thallium-backend/src/orm/users.py index 8f78387..82c46c0 100644 --- a/thallium-backend/src/orm/users.py +++ b/thallium-backend/src/orm/users.py @@ -1,9 +1,9 @@ from sqlalchemy.orm import Mapped -from .base import AuditBase, Base +from .base import AuditBase, Base, UUIDBase -class User(AuditBase, Base): +class User(UUIDBase, AuditBase, Base): """An authenticated user of the service.""" __tablename__ = "users" |