Skip to content

Commit

Permalink
data migration fix
Browse files Browse the repository at this point in the history
  • Loading branch information
johnml1135 committed Sep 5, 2024
1 parent 986b97e commit 1d067d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Machine/src/Serval.Machine.Shared/Models/Lock.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
public record Lock
{
public required string Id { get; init; }
public DateTime ExpiresAt { get; init; }
public DateTime ExpiresAt { get; init; } = DateTime.MinValue;
public required string HostId { get; init; }
}

0 comments on commit 1d067d3

Please sign in to comment.