19 lines
466 B
Python
19 lines
466 B
Python
# Generated by Django 3.2.12 on 2024-07-15 09:03
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('wpm', '0053_alter_mlog_batch'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='mlog',
|
|
name='fill_way',
|
|
field=models.PositiveSmallIntegerField(default=10, help_text='10:一次填写;20:分步填写', verbose_name='填写方式'),
|
|
),
|
|
]
|