feat: saving achievements on open launcher

This commit is contained in:
Zamitto
2024-09-24 13:04:46 -03:00
parent 8fb62af0cf
commit 500cd2a531
7 changed files with 63 additions and 58 deletions

View File

@@ -16,6 +16,9 @@ export class GameAchievement {
@JoinColumn()
game: Game;
@Column("text", { nullable: true })
unlockedAchievements: string;
@Column("text", { nullable: true })
achievements: string;
}