Merge branch 'master' into production

This commit is contained in:
2026-01-06 09:33:05 +03:30
3 changed files with 32 additions and 9 deletions
@@ -100,13 +100,13 @@ export class Restaurant extends BaseEntity {
@Enum(() => PlanEnum)
plan: PlanEnum = PlanEnum.Base;
@Property({unique: true})
subscriptionId!: string;
@Property({unique: true,nullable: true})
subscriptionId?: string;
@Property()
subscriptionEndDate!: Date;
@Property({nullable: true})
subscriptionEndDate?: Date;
@Property()
subscriptionStartDate!: Date;
@Property({nullable: true})
subscriptionStartDate?: Date;
}