Fix Base import in models/__init__.py for Alembic migrations

This commit is contained in:
Automated Action 2025-05-18 07:55:39 +00:00
parent 5c4ad74340
commit faaeb0128b

View File

@ -1,3 +1,4 @@
from app.database import Base
from app.models.user import User
__all__ = ["User"]
__all__ = ["User", "Base"]