1 files changed, 15 insertions, 3 deletions
diff --git a/src/util/entities/ClientRelease.ts b/src/util/entities/ClientRelease.ts
index cfbc3a9b..776f882c 100644
--- a/src/util/entities/ClientRelease.ts
+++ b/src/util/entities/ClientRelease.ts
@@ -25,17 +25,29 @@ export class Release extends BaseClass {
name: string;
@Column()
- pub_date: Date;
+ version: string;
@Column()
- url: string;
+ pub_date: Date;
+
+ @Column({ nullable: true })
+ url: string | null;
@Column()
platform: string;
@Column()
+ arch: string;
+
+ @Column()
enabled: boolean;
@Column({ nullable: true })
- notes?: string;
+ notes: string | null;
+
+ @Column({ nullable: true })
+ signature: string | null;
+
+ @Column({ default: "stable" })
+ channel: string;
}
|