Add migration for LeaveProcessJobStatuses table

- Created a new migration to add the LeaveProcessJobStatuses table.
- The table includes fields for job status, timestamps, user information, and error messages.
- Supports tracking of leave process job statuses with relevant metadata.
This commit is contained in:
Suphonchai Phoonsawat 2026-03-30 09:23:13 +07:00
parent d8f1126764
commit c91e6c8030
5 changed files with 1980 additions and 0 deletions

View file

@ -40,6 +40,8 @@ namespace BMA.EHR.Infrastructure.Persistence
#endregion
public DbSet<LeaveProcessJobStatus> LeaveProcessJobStatuses { get; set; }
public LeaveDbContext(DbContextOptions<LeaveDbContext> options) : base(options)
{