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 22:25:28 +03:00
committed by Erkin Alp Güney
parent fa750de6fb
commit de8b83f7b9
+1 -1
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()