5 lines
214 B
Python
5 lines
214 B
Python
# Import all the models here, so that Alembic can detect them
|
|
from app.db.base_class import Base
|
|
from app.models.user import User
|
|
from app.models.product import Product
|
|
from app.models.order import Order, OrderItem |