fix - update page access - v3
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
# Generated by Django 5.0 on 2025-12-01 06:53
|
||||
|
||||
import django.db.models.deletion
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('product', '0099_organizationquotastats_free_sale_balance_and_more'),
|
||||
('warehouse', '0045_inventoryquotasaleitem_quota_stat'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='extrasale',
|
||||
name='quota_stat',
|
||||
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, related_name='extra_sales', to='product.organizationquotastats'),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='quotapresaleitem',
|
||||
name='quota_stat',
|
||||
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, related_name='pre_sales', to='product.organizationquotastats'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user