1
0
mirror of https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git synced 2025-08-14 00:25:46 +02:00

add websockets suppor93

This commit is contained in:
MoonTestUse1
2025-01-05 02:44:04 +06:00
parent c3c20f6e6f
commit af7c903b5d
5 changed files with 22 additions and 21 deletions

View File

@@ -1,8 +1,4 @@
"""Import all models for Alembic autogenerate support"""
from app.db.base_class import Base
from app.models.employee import Employee
from app.models.request import Request
from app.models.token import Token
"""Database base configuration"""
from sqlalchemy.ext.declarative import declarative_base
# Импортируем все модели, чтобы Alembic мог их обнаружить
__all__ = ["Base", "Employee", "Request", "Token"]
Base = declarative_base()