feat: moving notifications

This commit is contained in:
Chubby Granny Chaser 2024-06-05 14:18:40 +01:00
parent d6e57c20c7
commit ef036d6f57
No known key found for this signature in database
17 changed files with 179 additions and 87 deletions

View file

@ -24,6 +24,9 @@ export class DownloadSource {
@Column("text", { nullable: true })
etag: string | null;
@Column("int", { default: 0 })
downloadCount: number;
@Column("text", { default: DownloadSourceStatus.UpToDate })
status: DownloadSourceStatus;