feat: adding import download source

This commit is contained in:
Chubby Granny Chaser
2024-06-03 02:12:05 +01:00
parent ddd9ea69df
commit 48e07370e4
70 changed files with 925 additions and 1261 deletions

View File

@@ -63,6 +63,9 @@ export class Game {
@Column("float", { default: 0 })
fileSize: number;
@Column("text", { nullable: true })
uri: string | null;
@OneToOne(() => Repack, { nullable: true })
@JoinColumn()
repack: Repack;