chore: add create customer and update customer for admin
This commit is contained in:
@@ -13,10 +13,10 @@ export class UserSubscription extends BaseEntity {
|
||||
@ManyToOne(() => SubscriptionPlan, (plan) => plan.userSubscriptions, { nullable: false, onDelete: "CASCADE" })
|
||||
plan: SubscriptionPlan;
|
||||
|
||||
@Column({ type: "timestamp", nullable: false })
|
||||
@Column({ type: "timestamptz", nullable: false })
|
||||
startDate: Date;
|
||||
|
||||
@Column({ type: "timestamp", nullable: false })
|
||||
@Column({ type: "timestamptz", nullable: false })
|
||||
endDate: Date;
|
||||
|
||||
@Column({ type: "varchar", length: 250, nullable: false })
|
||||
|
||||
Reference in New Issue
Block a user