background
deploy to danak / build_and_deploy (push) Has been cancelled

This commit is contained in:
2026-06-20 20:24:12 +03:30
parent 65a34b97e2
commit ef598a4c28
7 changed files with 105 additions and 7 deletions
@@ -100,13 +100,25 @@ export class Restaurant extends BaseEntity {
@Enum(() => PlanEnum)
plan: PlanEnum = PlanEnum.Base;
@Property({unique: true,nullable: true})
@Property({ unique: true, nullable: true })
subscriptionId?: string;
@Property({nullable: true})
@Property({ nullable: true })
subscriptionEndDate?: Date;
@Property({nullable: true})
@Property({ nullable: true })
subscriptionStartDate?: Date;
@Property({ nullable: true })
bgUrl?: string;
@Property({ nullable: true })
bgOpacity?: string;
@Property({ nullable: true })
bgBlur?: string;
@Property({ nullable: true })
bgOverlay?: string;
}