19 lines
422 B
Python
19 lines
422 B
Python
# Generated by Django 2.2.8 on 2022-10-31 16:13
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('enp', '0027_auto_20220902_1005'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='drain',
|
|
name='need_predict',
|
|
field=models.BooleanField(default=True, verbose_name='是否需要预测'),
|
|
),
|
|
]
|