mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-03-09 15:40:26 +00:00
chore: merge with main
This commit is contained in:
commit
498a889f1d
47 changed files with 1337 additions and 451 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue