forked from erp-dev/erp
feat: log formatted
This commit is contained in:
16
printing/migrations/0039_printingjob_sub_id.py
Normal file
16
printing/migrations/0039_printingjob_sub_id.py
Normal file
@@ -0,0 +1,16 @@
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('printing', '0038_printingorderexternalsnapshotsyncaudit'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='printingjob',
|
||||
name='sub_id',
|
||||
field=models.IntegerField(blank=True, null=True, verbose_name='子编号'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user