1 files changed, 2 insertions, 2 deletions
diff --git a/util/src/entities/Channel.ts b/util/src/entities/Channel.ts
index 6eac19ca..aa2bfab3 100644
--- a/util/src/entities/Channel.ts
+++ b/util/src/entities/Channel.ts
@@ -30,8 +30,8 @@ export class Channel extends BaseClass {
@Column({ nullable: true })
name?: string;
- @Column({ nullable: true })
- icon?: string;
+ @Column({ type: 'text', nullable: true })
+ icon?: string | null;
@Column({ type: "simple-enum", enum: ChannelType })
type: ChannelType;
|