2026-06-29 00:10:10 +02:00
|
|
|
"""SQLAlchemy models for LeoCRM."""
|
2026-06-04 00:06:16 +00:00
|
|
|
|
2026-06-29 00:10:10 +02:00
|
|
|
from app.models.tenant import Tenant
|
|
|
|
|
from app.models.user import User, UserTenant
|
|
|
|
|
from app.models.role import Role
|
|
|
|
|
from app.models.session import Session
|
|
|
|
|
from app.models.audit import AuditLog, DeletionLog
|
|
|
|
|
from app.models.notification import Notification
|
|
|
|
|
from app.models.auth import PasswordResetToken, ApiToken
|
|
|
|
|
from app.models.company import Company
|
2026-06-29 00:44:34 +02:00
|
|
|
from app.models.contact import Contact, CompanyContact
|
2026-06-04 00:06:16 +00:00
|
|
|
|
|
|
|
|
__all__ = [
|
2026-06-29 00:10:10 +02:00
|
|
|
"Tenant", "User", "UserTenant", "Role", "Session",
|
|
|
|
|
"AuditLog", "DeletionLog", "Notification",
|
|
|
|
|
"PasswordResetToken", "ApiToken", "Company",
|
2026-06-29 00:44:34 +02:00
|
|
|
"Contact", "CompanyContact",
|
2026-06-04 00:06:16 +00:00
|
|
|
]
|