type longtext does not support length

This commit is contained in:
Madeline 2022-07-02 22:59:50 +10:00
parent bc253efb50
commit b95cfbee19

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