Type change

Changed type for column "content" to "longtext"

(you might want to get a back up from your database before updating)
This commit is contained in:
RealMANI 2022-03-07 21:40:24 +03:30 committed by Erkin Alp Güney
parent fa750de6fb
commit de8b83f7b9

View File

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