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

Fix tests

This commit is contained in:
MoonTestUse1
2025-01-06 23:40:39 +06:00
parent 161361609d
commit fec52c777b
17 changed files with 249 additions and 368 deletions

View File

@@ -1,7 +1,10 @@
"""Models initialization"""
from .base import Base
from ..database import Base, engine
from .employee import Employee
from .request import Request
from .token import Token
# Создаем все таблицы
Base.metadata.create_all(bind=engine)
__all__ = ['Base', 'Employee', 'Request', 'Token']