Async problems

This commit is contained in:
2024-02-13 16:03:48 +03:00
parent 730c28da57
commit 9097e6cc4f
4 changed files with 59 additions and 7 deletions

View File

@@ -13,8 +13,8 @@ export class Post {
@Column({ default: false })
public posted!: boolean;
@Column()
public text: string;
@Column({ nullable: true })
public text?: string;
@Column({ nullable: true })
public media_group_id: string;