Fix last migration

This commit is contained in:
2025-10-28 16:05:35 +09:00
parent 53df5e1767
commit 683d600cb0
6 changed files with 15 additions and 26 deletions

View File

@ -22,9 +22,9 @@ namespace Hcs.WebApp.Data.Hcs
public DateTime? EndedAt { get; set; }
public int Step { get; set; }
public int Step { get; set; } = 0;
public string FailureReason { get; set; }
public string? FailureReason { get; set; }
public virtual ICollection<Operation> Operations { get; set; } = [];