19 lines
429 B
Python
19 lines
429 B
Python
# Generated by Django 5.0 on 2025-09-30 11:38
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('warehouse', '0036_inventoryquotasaleitem_inventory_calculation'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='inventoryquotasaleitem',
|
|
name='item_share',
|
|
field=models.JSONField(default=dict),
|
|
),
|
|
]
|