2026-07-17 01:58:34 +02:00
|
|
|
"""SQLAlchemy models package.
|
|
|
|
|
|
|
|
|
|
Import all models here so they register with Base.metadata
|
|
|
|
|
before create_all/drop_all is called.
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
from app.models.contact import Contact, ContactPerson
|
|
|
|
|
from app.models.datev_export import DATEVExport
|
|
|
|
|
from app.models.file import File
|
|
|
|
|
from app.models.ocr_result import OCRResult
|
|
|
|
|
from app.models.sale import Sale, SaleStatus
|
|
|
|
|
from app.models.user import User, UserRole
|
|
|
|
|
from app.models.vehicle import MobileDeListing, Vehicle
|
|
|
|
|
|
|
|
|
|
__all__ = [
|
|
|
|
|
"Contact",
|
|
|
|
|
"ContactPerson",
|
|
|
|
|
"DATEVExport",
|
|
|
|
|
"File",
|
|
|
|
|
"OCRResult",
|
|
|
|
|
"Sale",
|
|
|
|
|
"SaleStatus",
|
|
|
|
|
"User",
|
|
|
|
|
"UserRole",
|
|
|
|
|
"Vehicle",
|
|
|
|
|
"MobileDeListing",
|
|
|
|
|
]
|