chore: mark all as read in notifications

This commit is contained in:
Matin
2025-02-08 16:14:10 +03:30
parent e4f201bea2
commit ab3f3f8eaf
7 changed files with 77 additions and 21 deletions
+3 -1
View File
@@ -4,7 +4,9 @@ export abstract class BaseEntity {
@PrimaryGeneratedColumn("uuid")
id: string;
@CreateDateColumn()
@CreateDateColumn({
type: "timestamptz",
})
createdAt: Date;
@UpdateDateColumn()