diff --git a/core/models.py b/core/models.py index 86fa9da..e4203a0 100644 --- a/core/models.py +++ b/core/models.py @@ -59,6 +59,7 @@ class ImagePrice(BaseModel, TimestampMixin, PriceMixin): # region Invoicing class BillingProject(BaseModel, TimestampMixin): tenant_id = models.CharField(max_length=256) + email_notification = models.EmailField(max_length=256, blank=True, null=True) def __str__(self): return self.tenant_id