add content

This commit is contained in:
liuyi 2025-05-20 09:00:08 +08:00
parent 46d0567921
commit 7fd3bd83f8

View File

@ -40,6 +40,6 @@ export class PostEntity extends BaseEntity {
@CreateDateColumn({ comment: '创建时间' })
createdAt?: Date;
@UpdateDateColumn({ comment: '更新时间' })
@UpdateDateColumn({ comment: '更新时间', nullable: true })
updatedAt?: Date;
}