1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-20 09:41:35 +02:00

type longtext does not support length

This commit is contained in:
Madeline 2022-07-02 22:59:50 +10:00
parent 8154bce3ac
commit 87cb4b64ac
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", type: "longtext" })
@Column({ nullable: true, type: "longtext" })
content?: string;
@Column()