type longtext does not support length

This commit is contained in:
Madeline
2022-07-02 22:59:50 +10:00
parent 8154bce3ac
commit 87cb4b64ac
+1 -1
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()