Refactor backend to SQLModel; reset schema; add Company OS endpoints

This commit is contained in:
Abhimanyu Saharan
2026-02-01 23:16:56 +05:30
parent b37e7dd841
commit aa6b0c807b
56 changed files with 867 additions and 450 deletions

View File

@@ -1,2 +1,17 @@
# Import models here so Alembic can discover them
from .task import Task # noqa: F401
from app.models.org import Department, Employee
from app.models.projects import Project, ProjectMember
from app.models.work import Task, TaskComment
from app.models.hr import HeadcountRequest, EmploymentAction
from app.models.activity import Activity
__all__ = [
"Department",
"Employee",
"Project",
"ProjectMember",
"Task",
"TaskComment",
"HeadcountRequest",
"EmploymentAction",
"Activity",
]