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:05:42 +06:00
parent ce6a579f96
commit c3145d7bc4
6 changed files with 13 additions and 14 deletions

View File

@@ -1,8 +1,8 @@
"""Employee model"""
from sqlalchemy import Column, Integer, String, DateTime, Boolean
from sqlalchemy import Column, Integer, String, DateTime
from sqlalchemy.sql import func
from sqlalchemy.orm import relationship
from app.db.base_class import Base
from .base import Base
class Employee(Base):
__tablename__ = "employees"