1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/entities/ClientRelease.ts b/src/util/entities/ClientRelease.ts
index 995c9492..305a89e5 100644
--- a/src/util/entities/ClientRelease.ts
+++ b/src/util/entities/ClientRelease.ts
@@ -43,10 +43,10 @@ export class Release extends BaseClass {
enabled: boolean;
@Column({ nullable: true })
- notes: string | null;
+ notes?: string;
@Column({ nullable: true })
- signature: string | null;
+ signature?: string;
@Column({ default: "stable" })
channel: string;
|