add page column back (with nullable)

This commit is contained in:
Zamitto 2024-06-03 11:50:05 -03:00
parent 8fccbb6d81
commit 577c2da6e5

View File

@ -19,6 +19,9 @@ export class Repack {
@Column("text", { unique: true }) @Column("text", { unique: true })
magnet: string; magnet: string;
@Column("int", { nullable: true })
page: number;
@Column("text") @Column("text")
repacker: string; repacker: string;