summary refs log tree commit diff
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-09-09 23:31:38 +1000
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-09-09 23:31:38 +1000
commit842bc8f635021c0830c321d112e066f6f7cca9cd (patch)
tree93df9876b1e6ceb06c2970cb538041032f56fc7d
parentFix typo (diff)
downloadserver-842bc8f635021c0830c321d112e066f6f7cca9cd.tar.xz
RIP MESSAGES ONCE MORE.
-rw-r--r--util/src/entities/Message.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/src/entities/Message.ts b/util/src/entities/Message.ts
index d2c22120..83607ed4 100644
--- a/util/src/entities/Message.ts
+++ b/util/src/entities/Message.ts
@@ -114,7 +114,7 @@ export class Message extends BaseClass {
 	@ManyToOne(() => Application)
 	application?: Application;
 
-	@Column({ nullable: true })
+	@Column({ nullable: true, type: "longtext" })
 	content?: string;
 
 	@Column()