26 lines
731 B
Python
26 lines
731 B
Python
# Generated by Django 3.2.12 on 2024-01-19 08:20
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('enp', '0002_auto_20240119_1053'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='drainequip',
|
|
name='pm10_alarm',
|
|
field=models.DecimalField(
|
|
blank=True, decimal_places=4, max_digits=10, null=True, verbose_name='PM10报警值'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='drainequip',
|
|
name='pm25_alarm',
|
|
field=models.DecimalField(
|
|
blank=True, decimal_places=4, max_digits=10, null=True, verbose_name='PM2.5报警值'),
|
|
),
|
|
]
|