chore: merge with main

This commit is contained in:
Hydra 2024-04-25 05:52:19 +01:00
commit 498a889f1d
47 changed files with 1337 additions and 451 deletions

View file

@ -40,7 +40,7 @@ export class Game {
shop: GameShop;
@Column("text", { nullable: true })
status: string;
status: string | null;
@Column("float", { default: 0 })
progress: number;
@ -61,6 +61,9 @@ export class Game {
@JoinColumn()
repack: Repack;
@Column("boolean", { default: false })
isDeleted: boolean;
@CreateDateColumn()
createdAt: Date;