add - new pricing attr system
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
# Generated by Django 5.0 on 2025-12-01 12:13
|
||||
|
||||
import django.db.models.deletion
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('product', '0099_organizationquotastats_free_sale_balance_and_more'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='attributevalue',
|
||||
name='org_quota_stat',
|
||||
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, related_name='attribute_values', to='product.organizationquotastats'),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='quotabrokervalue',
|
||||
name='org_quota_stat',
|
||||
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, related_name='broker_values', to='product.organizationquotastats'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user