generated from gilles/template-webapp
20 lines
442 B
Python
20 lines
442 B
Python
"""Package des modèles SQLAlchemy.
|
|
|
|
Importe tous les modèles pour qu'ils soient disponibles pour Alembic.
|
|
"""
|
|
|
|
from app.models.category import Category
|
|
from app.models.document import Document, DocumentType
|
|
from app.models.item import Item, ItemStatus
|
|
from app.models.location import Location, LocationType
|
|
|
|
__all__ = [
|
|
"Category",
|
|
"Location",
|
|
"LocationType",
|
|
"Item",
|
|
"ItemStatus",
|
|
"Document",
|
|
"DocumentType",
|
|
]
|