Skip to content

Commit

Permalink
store sync verified user id not username
Browse files Browse the repository at this point in the history
  • Loading branch information
adelikat committed Sep 2, 2024
1 parent 347370e commit 7fc6b2d
Show file tree
Hide file tree
Showing 7 changed files with 3,641 additions and 11 deletions.
4 changes: 2 additions & 2 deletions TASVideos.Data/Entity/Submission.cs
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,8 @@ public void GenerateTitle()

public long? CycleCount { get; set; }

[StringLength(50)]
public string? SyncedBy { get; set; }
public int? SyncedByUserId { get; set; }
public virtual User? SyncedByUser { get; set; }
public DateTime? SyncedOn { get; set; }
}

Expand Down
Loading

0 comments on commit 7fc6b2d

Please sign in to comment.