forked from erp-dev/erp
feat: red flush
This commit is contained in:
16
stock/migrations/0010_stockchangerecord_red_flush_id.py
Normal file
16
stock/migrations/0010_stockchangerecord_red_flush_id.py
Normal file
@@ -0,0 +1,16 @@
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('stock', '0009_alter_stockchangedetail_unit_alter_stockfreeze_unit_and_more'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='stockchangerecord',
|
||||
name='red_flush_id',
|
||||
field=models.UUIDField(blank=True, db_index=True, null=True, verbose_name='红冲批次ID'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user