# Import all models here for Alembic to detect # These imports are needed for Alembic to detect the models # flake8: noqa from app.models.inventory import InventoryItem, InventoryStatus, InventoryTransaction from app.models.product import Category, Product from app.models.user import User, UserRole # Make all models available in this module __all__ = [ "InventoryItem", "InventoryStatus", "InventoryTransaction", "Category", "Product", "User", "UserRole" ]