fix: adding default to uris

This commit is contained in:
Chubby Granny Chaser 2024-08-18 03:06:35 +01:00
parent c76ef630e1
commit 73a12488cd
No known key found for this signature in database

View File

@ -40,7 +40,7 @@ export class Repack {
@ManyToOne(() => DownloadSource, { nullable: true, onDelete: "CASCADE" }) @ManyToOne(() => DownloadSource, { nullable: true, onDelete: "CASCADE" })
downloadSource: DownloadSource; downloadSource: DownloadSource;
@Column("text") @Column("text", { default: "[]" })
uris: string; uris: string;
@CreateDateColumn() @CreateDateColumn()