Skip to content

Commit

Permalink
Add mapper_status and latest_error_code to DisbursementBatchControl m…
Browse files Browse the repository at this point in the history
…odel
  • Loading branch information
PSNAppz committed Oct 4, 2024
1 parent 5a33591 commit b57c5ab
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ class DisbursementBatchControl(BaseORMModelWithTimes):
mapper_resolution_batch_id = mapped_column(
UUID, nullable=True, default=None, index=True
)
mapper_status: Mapped[ProcessStatus] = mapped_column(
SqlEnum(ProcessStatus), default=ProcessStatus.PENDING
)
latest_error_code: Mapped[str] = mapped_column(String, nullable=True, default=None)


class MapperResolutionBatchStatus(BaseORMModelWithTimes):
Expand Down

0 comments on commit b57c5ab

Please sign in to comment.