Skip to content

Commit

Permalink
Remove status_id
Browse files Browse the repository at this point in the history
  • Loading branch information
vycius committed Sep 30, 2024
1 parent a9d8d6d commit e9b3902
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,6 @@ class Parcel(BaseModel):
unique_number: int = Field(description="Unique number of the parcel")
cadastral_number: str = Field(description="Cadastral number of the parcel")
updated_at: datetime.date = Field(description="Date of update of the parcel")
status_id: Optional[int] = Field(description="Status ID of the parcel")
area_ha: float = Field(description="Area of the parcel in hectares")
geometry: Geometry = Field(description="Polygon geometry of the parcel")

Expand Down
1 change: 0 additions & 1 deletion src/services.py
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,6 @@ def _get_select_query(
models.Parcels.cadastral_number,
models.Parcels.area_ha,
models.Parcels.updated_at,
models.Parcels.status_id,
_municipality_object,
_purpose_type_object,
_status_type_object,
Expand Down

0 comments on commit e9b3902

Please sign in to comment.