chore: add create customer and update customer for admin

This commit is contained in:
mahyargdz
2025-03-06 09:35:59 +03:30
parent c1f21e75f2
commit b92a65c22c
20 changed files with 674 additions and 399 deletions
@@ -13,7 +13,7 @@ export class Announcement extends BaseEntity {
@Column({ type: "text" })
content: string;
@Column({ type: "timestamp", nullable: true, default: null })
@Column({ type: "timestamptz", nullable: true, default: null })
publishAt: Date | null;
@ManyToOne(() => DanakService, (service) => service.announcements, { onDelete: "CASCADE" })