generated from gilles/template-webapp
claude code
This commit is contained in:
19
backend/app/models/__init__.py
Normal file
19
backend/app/models/__init__.py
Normal file
@@ -0,0 +1,19 @@
|
||||
"""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",
|
||||
]
|
||||
Reference in New Issue
Block a user