diff --git a/src/main/entity/repack.entity.ts b/src/main/entity/repack.entity.ts index 3b546692..ff3f16cb 100644 --- a/src/main/entity/repack.entity.ts +++ b/src/main/entity/repack.entity.ts @@ -40,7 +40,7 @@ export class Repack { @ManyToOne(() => DownloadSource, { nullable: true, onDelete: "CASCADE" }) downloadSource: DownloadSource; - @Column("text") + @Column("text", { default: "[]" }) uris: string; @CreateDateColumn()