19 lines
449 B
Python
19 lines
449 B
Python
# Generated by Django 5.0 on 2025-08-25 11:32
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('warehouse', '0014_remove_inventoryquotasaletransaction_buyer_user_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='inventoryentry',
|
|
name='entry_identity',
|
|
field=models.CharField(max_length=50, null=True),
|
|
),
|
|
]
|