Skip to content

Commit

Permalink
Minor DB schema fixes + fix pregenerator not distincting the list
Browse files Browse the repository at this point in the history
  • Loading branch information
Simyon264 committed Jul 12, 2024
1 parent a0f9a0d commit 40a4f7b
Show file tree
Hide file tree
Showing 5 changed files with 502 additions and 13 deletions.
7 changes: 0 additions & 7 deletions ReplayBrowser/Data/CollectedPlayerData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,6 @@ public override int GetHashCode()
public class CharacterData
{
public int Id { get; set; }

// Foreign key
public CollectedPlayerData? CollectedPlayerData { get; set; }

public string CharacterName { get; set; }
public DateTime LastPlayed { get; set; } = DateTime.MinValue;
public int RoundsPlayed { get; set; }
Expand All @@ -76,9 +72,6 @@ public class JobCountData
{
public int Id { get; set; }

// Foreign key
public CollectedPlayerData? CollectedPlayerData { get; set; }

public string JobPrototype { get; set; }
public int RoundsPlayed { get; set; }
public DateTime LastPlayed { get; set; } = DateTime.MinValue;
Expand Down
Loading

0 comments on commit 40a4f7b

Please sign in to comment.