fix: the email vaerification logic error
This commit is contained in:
Regular → Executable
+9
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user