Fixed bad default subtrophy values (issue #235)

This commit is contained in:
daydensteve
2026-01-08 20:34:28 -05:00
parent f2afb3cff5
commit b3824f038f
2 changed files with 33 additions and 2 deletions

View File

@@ -26,8 +26,8 @@ profile = Table(
Column("frameId", Integer),
Column("isMaimai", Boolean),
Column("trophyId", Integer),
Column("trophyIdSub1", Integer),
Column("trophyIdSub2", Integer),
Column("trophyIdSub1", Integer, server_default="-1"),
Column("trophyIdSub2", Integer, server_default="-1"),
Column("userName", String(25)),
Column("isWebJoin", Boolean),
Column("playCount", Integer),