feat: adjustments on achievements

This commit is contained in:
Zamitto
2024-10-21 01:07:46 -03:00
parent 22fc95ff53
commit bb65d77fc6
4 changed files with 66 additions and 56 deletions

View File

@@ -12,8 +12,8 @@ export class GameAchievement {
shop: string;
@Column("text", { nullable: true })
unlockedAchievements: string;
unlockedAchievements: string | null;
@Column("text", { nullable: true })
achievements: string;
achievements: string | null;
}