19 lines
524 B
Python
19 lines
524 B
Python
# Generated by Django 3.2.12 on 2024-05-08 09:25
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('information', '0037_alter_parsepdf_annual'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='parsepdf',
|
|
name='status',
|
|
field=models.CharField(choices=[('执行中', '执行中'), ('完成', '完成'), ('未完成', '未完成')], default='完成', max_length=100, verbose_name='状态'),
|
|
),
|
|
]
|