Revert "feat: status and board in deal schema"

This reverts commit b9ae3bc18a.
This commit is contained in:
2025-09-01 20:39:20 +04:00
parent b9ae3bc18a
commit de5ffed7de
2 changed files with 5 additions and 17 deletions

View File

@ -2,8 +2,6 @@ from datetime import datetime
from typing import Optional
from schemas.base import BaseSchema, BaseResponse, PaginationInfoSchema
from schemas.board import BoardSchema
from schemas.status import StatusSchema
# region Entities
@ -13,8 +11,8 @@ class DealSchema(BaseSchema):
id: int
name: str
lexorank: str
status: StatusSchema
board: BoardSchema
status_id: int
board_id: int
created_at: datetime