Add migration to create CheckInJobStatuses table for RMQ task control

- Introduced a new migration that creates the CheckInJobStatuses table.
- The table includes fields for tracking job statuses, timestamps, user information, and error messages.
- Supports various statuses such as PENDING, PROCESSING, COMPLETED, and FAILED.
This commit is contained in:
Suphonchai Phoonsawat 2026-01-20 10:49:13 +07:00
parent 3532df32fd
commit a463df5716
12 changed files with 2259 additions and 126 deletions

View file

@ -54,6 +54,7 @@ namespace BMA.EHR.Leave.Service.DTOs.CheckIn
public Guid? CheckInId { get; set; }
public Guid? TaskId { get; set; }
public double Lat { get; set; } = 0;