|
# Generated by Django 3.2.6 on 2021-08-15 09:31
from django.db import migrations
import jsonfield.fields
class Migration(migrations.Migration):
dependencies = [
('equipment', '0007_isolationpointfieldpoolinfo'),
]
operations = [
migrations.AlterModelOptions(
name='isolationpointfieldpoolinfo',
options={'verbose_name': '字段池信息', 'verbose_name_plural': '字段池信息'},
),
migrations.AlterField(
model_name='isolationpointinfo',
name='point_measure_window',
field=jsonfield.fields.JSONField(blank=True, default=[{'end': '1:00', 'start': '0:00'}, {'end': '2:00', 'start': '1:00'}, {'end': '3:00', 'start': '2:00'}, {'end': '4:00', 'start': '3:00'}, {'end': '5:00', 'start': '4:00'}, {'end': '6:00', 'start': '5:00'}, {'end': '7:00', 'start': '6:00'}, {'end': '8:00', 'start': '7:00'}, {'end': '9:00', 'start': '8:00'}, {'end': '10:00', 'start': '9:00'}, {'end': '11:00', 'start': '10:00'}, {'end': '12:00', 'start': '11:00'}, {'end': '13:00', 'start': '12:00'}, {'end': '14:00', 'start': '13:00'}, {'end': '15:00', 'start': '14:00'}, {'end': '16:00', 'start': '15:00'}, {'end': '17:00', 'start': '16:00'}, {'end': '18:00', 'start': '17:00'}, {'end': '19:00', 'start': '18:00'}, {'end': '20:00', 'start': '19:00'}, {'end': '21:00', 'start': '20:00'}, {'end': '22:00', 'start': '21:00'}, {'end': '23:00', 'start': '22:00'}, {'end': '24:00', 'start': '23:00'}], help_text='隔离点测温时间段', null=True, verbose_name='point_measure_window'),
),
]
|