fix: the email vaerification logic error

This commit is contained in:
mahyargdz
2025-02-26 15:25:18 +03:30
parent f8a1a7b784
commit 93c5ad49d3
320 changed files with 215 additions and 92 deletions
+9
View File
@@ -19,6 +19,15 @@ export class UserSubscription extends BaseEntity {
@Column({ type: "timestamp", nullable: false })
endDate: Date;
@Column({ type: "varchar", length: 250, nullable: false })
businessName: string;
@Column({ type: "varchar", length: 50, nullable: false })
businessPhone: string;
@Column({ type: "text", nullable: false })
description: string;
@Column({ type: "enum", enum: SubscriptionStatus, default: SubscriptionStatus.PENDING })
status: SubscriptionStatus;