27 lines
835 B
Python
27 lines
835 B
Python
# Generated by Django 3.2.12 on 2025-11-26 01:53
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('wpm', '0124_auto_20251020_1009'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='mlogbw',
|
|
name='number',
|
|
field=models.TextField(db_index=True, verbose_name='单个编号'),
|
|
),
|
|
migrations.AddIndex(
|
|
model_name='mlogb',
|
|
index=models.Index(condition=models.Q(('material_out__isnull', False)), fields=['material_out'], name='mlogb_mat_out_not_null'),
|
|
),
|
|
migrations.AddIndex(
|
|
model_name='mlogb',
|
|
index=models.Index(condition=models.Q(('material_in__isnull', False)), fields=['material_in'], name='mlogb_mat_in_not_null'),
|
|
),
|
|
]
|