game: editing the structure of database

This commit is contained in:
ryan 2025-02-16 02:40:13 +08:00
parent dfdc171b0e
commit 685687d2d7

View file

@ -15,6 +15,6 @@ public class Users : BaseModel
[Column()] public int score { get; set; }
[Column()] public string displayName { get; set; }
[Column()] public int daysPlayed { get; set; }
[Column()] public int customersHelped { get; set; }
[Column()] public int customersHelpedCorrectly { get; set; }
[Column()] public int customersHelpedWrongly { get; set; }
}