19 lines
421 B
Python
19 lines
421 B
Python
# Generated by Django 2.2.8 on 2022-10-31 17:07
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('enp', '0028_drain_need_predict'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='drain',
|
|
name='need_predict',
|
|
field=models.IntegerField(default=1, verbose_name='是否需要预测'),
|
|
),
|
|
]
|