12 lines
536 B
Python
12 lines
536 B
Python
from app.db.base_class import Base # noqa
|
|
|
|
# Import all models here to ensure they are registered with SQLAlchemy
|
|
# This file will be used by alembic migrations
|
|
from app.models.user import User # noqa
|
|
from app.models.wallet import Wallet # noqa
|
|
from app.models.deposit import Deposit # noqa
|
|
from app.models.withdrawal import Withdrawal # noqa
|
|
from app.models.transaction import Transaction # noqa
|
|
from app.models.bot import Bot # noqa
|
|
from app.models.bot_purchase import BotPurchase # noqa
|
|
from app.models.kyc import KYC # noqa |