add - new pricing attr system
This commit is contained in:
@@ -215,6 +215,12 @@ class AttributeValue(BaseModel):
|
||||
related_name='attribute_values',
|
||||
null=True
|
||||
)
|
||||
org_quota_stat = models.ForeignKey(
|
||||
'OrganizationQuotaStats',
|
||||
on_delete=models.CASCADE,
|
||||
related_name='attribute_values',
|
||||
null=True
|
||||
)
|
||||
attribute = models.ForeignKey(
|
||||
Attribute,
|
||||
on_delete=models.CASCADE,
|
||||
@@ -695,6 +701,12 @@ class QuotaBrokerValue(BaseModel):
|
||||
related_name="broker_values",
|
||||
null=True
|
||||
)
|
||||
org_quota_stat = models.ForeignKey(
|
||||
'OrganizationQuotaStats',
|
||||
on_delete=models.CASCADE,
|
||||
related_name='broker_values',
|
||||
null=True
|
||||
)
|
||||
broker = models.ForeignKey(
|
||||
Broker,
|
||||
on_delete=models.CASCADE,
|
||||
|
||||
Reference in New Issue
Block a user