mirror of
https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git
synced 2025-08-14 00:25:46 +02:00
7 lines
183 B
Python
7 lines
183 B
Python
"""Models initialization"""
|
|
from ..database import Base, engine
|
|
from .employee import Employee
|
|
from .request import Request
|
|
|
|
# Create all tables
|
|
Base.metadata.create_all(bind=engine) |