Skip to content

Commit

Permalink
fix: add missing attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
Thundernerd committed Mar 17, 2024
1 parent a17118a commit 7c4bf9c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Models/PlayerPoints.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class PlayerPoints : ModelBase

[Column("points")] [Attr] public int Points { get; set; }
[Column("rank")] [Attr] public int Rank { get; set; }
[Column("world_records")] public int WorldRecords { get; set; }
[Column("world_records")] [Attr] public int WorldRecords { get; set; }

[ForeignKey("User")]
[InverseProperty("PlayerPoints")]
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.2.0</Version>
<Version>3.2.1</Version>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 7c4bf9c

Please sign in to comment.