1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-10 12:42:44 +01:00

Attempt to fix messages being deleted

This commit is contained in:
Madeline 2022-07-02 22:57:24 +10:00
parent 16c7ec50e8
commit ecde11620b
No known key found for this signature in database
GPG Key ID: 1958E017C36F2E47

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()