diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-09-09 23:31:38 +1000 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-09-09 23:31:38 +1000 |
commit | 842bc8f635021c0830c321d112e066f6f7cca9cd (patch) | |
tree | 93df9876b1e6ceb06c2970cb538041032f56fc7d | |
parent | Fix typo (diff) | |
download | server-842bc8f635021c0830c321d112e066f6f7cca9cd.tar.xz |
RIP MESSAGES ONCE MORE.
-rw-r--r-- | util/src/entities/Message.ts | 2 |
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() |