33 lines
978 B
Python
33 lines
978 B
Python
# Generated by Django 3.2.6 on 2021-09-16 02:54
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('em', '0007_equipmentrecord'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='equipmentrecord',
|
|
name='nextdate',
|
|
),
|
|
migrations.AddField(
|
|
model_name='equipment',
|
|
name='nextdate',
|
|
field=models.DateField(blank=True, null=True, verbose_name='下次应校准或检定日期'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='equipment',
|
|
name='recentlydate',
|
|
field=models.DateField(blank=True, null=True, verbose_name='最近一次校准/检定日期'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='equipmentrecord',
|
|
name='recentlydate',
|
|
field=models.DateField(blank=True, null=True, verbose_name='校准/检定日期'),
|
|
),
|
|
]
|