19 lines
454 B
Python
19 lines
454 B
Python
# Generated by Django 5.0 on 2025-09-09 11:07
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('warehouse', '0020_remove_inventoryquotasaletransaction_items_total_weight'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='inventoryquotasaletransaction',
|
|
name='weight',
|
|
field=models.PositiveBigIntegerField(default=0),
|
|
),
|
|
]
|