1
0
mirror of https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git synced 2025-08-14 00:25:46 +02:00
This commit is contained in:
MoonTestUse1
2025-02-02 03:54:29 +06:00
parent 8f4d3ae878
commit ef548e3dfd
8 changed files with 165 additions and 108 deletions

View File

@@ -9,7 +9,6 @@ class Employee(Base):
__tablename__ = "employees"
id = Column(Integer, primary_key=True, index=True)
login = Column(String, unique=True, nullable=False, index=True)
first_name = Column(String, nullable=False)
last_name = Column(String, nullable=False)
department = Column(String, nullable=False)