Skip to content

Commit

Permalink
fix: user world records naming
Browse files Browse the repository at this point in the history
  • Loading branch information
Thundernerd committed Feb 9, 2024
1 parent 10ccd13 commit c1ed412
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Models/User.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public partial class User : ModelBase
[InverseProperty("UserNavigation")]
public virtual ICollection<Vote>? Votes { get; set; } = new List<Vote>();

[HasMany]
[HasMany(PublicName = "worldRecords")]
[InverseProperty("UserNavigation")]
public virtual ICollection<WorldRecord>? WorldRecordsNavigation { get; set; } = new List<WorldRecord>();

Expand Down
2 changes: 1 addition & 1 deletion Zeepkist.GTR.Database.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Nullable>enable</Nullable>
<AssemblyName>TNRD.Zeepkist.GTR.Database</AssemblyName>
<RootNamespace>TNRD.Zeepkist.GTR.Database</RootNamespace>
<Version>3.0.0</Version>
<Version>3.0.1</Version>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit c1ed412

Please sign in to comment.