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

@ -12,11 +12,11 @@
public DateTime? SyncedAt { get; set; }
public int LastSyncOperationId { get; set; }
public int? LastSyncOperationId { get; set; }
public virtual Operation LastSyncOperation { get; set; }
public string LastSyncError { get; set; }
public string? LastSyncError { get; set; }
public virtual ICollection<RegistryElement> Elements { get; set; } = [];
}