Merge pull request #10710 from peppy/user-id-as-int

Use int instead of long for user_id fields for now
This commit is contained in:
Dan Balasescu
2020-11-06 14:35:14 +09:00
committed by GitHub
11 changed files with 15 additions and 15 deletions

View File

@ -123,7 +123,7 @@ namespace osu.Game.Scoring
[JsonIgnore]
[Column("UserID")]
public long? UserID
public int? UserID
{
get => User?.Id ?? 1;
set