8 lines
258 B
Python
8 lines
258 B
Python
# Import all the models, so that Base has them before being
|
|
# imported by Alembic
|
|
from app.db.session import Base
|
|
from app.models.device import Device
|
|
from app.models.telemetry import Telemetry
|
|
from app.models.log import Log
|
|
from app.models.user import User
|