Added message/caption entities

This commit is contained in:
2024-01-04 21:00:43 +03:00
parent a35ee9fdf2
commit 38a9e0cbb9
4 changed files with 10 additions and 4 deletions

View File

@@ -34,4 +34,7 @@ export class Post {
@OneToMany(() => Image, (image) => image.post)
public images: Image[];
@Column({ nullable: true })
public message_entities?: string;
}