2025-06-02 11:37:11 +00:00

9 lines
403 B
Python

# Import all the models, so that Base has them before being
# imported by Alembic
from app.db.session import Base # noqa
from app.models.user import User # noqa
from app.models.product import Product # noqa
from app.models.warehouse import Warehouse # noqa
from app.models.inventory import Inventory # noqa
from app.models.shipment import Shipment # noqa
from app.models.order import Order # noqa