21 lines
630 B
Python
21 lines
630 B
Python
# Generated by Django 5.0 on 2025-11-26 07:30
|
|
|
|
import django.db.models.deletion
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('product', '0097_organizationquotastats_inventory_entry_balance'),
|
|
('warehouse', '0044_inventoryentry_org_quota_stat'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='inventoryquotasaleitem',
|
|
name='quota_stat',
|
|
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, related_name='sale_items', to='product.organizationquotastats'),
|
|
),
|
|
]
|