1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-13 06:02:39 +01:00

Attempt to fix messages being deleted

This commit is contained in:
Madeline 2022-07-02 22:57:24 +10:00
parent c1fab4043a
commit bcf9207089

View File

@ -114,7 +114,7 @@ export class Message extends BaseClass {
@ManyToOne(() => Application)
application?: Application;
@Column({ nullable: true, length: 4000 })
@Column({ nullable: true, length: "4000", type: "longtext" })
content?: string;
@Column()