Mosqkiller-API/apps/mosquito/migrations/0019_auto_20221130_1035.py

34 lines
1.1 KiB
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Generated by Django 2.2.4 on 2022-11-30 02:35
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('mosquito', '0018_weatherlog_weatherstationinfo'),
]
operations = [
migrations.AddField(
model_name='deviceinfo',
name='location_id',
field=models.CharField(blank=True, max_length=100, null=True, verbose_name='地理位置IDLU'),
),
migrations.AddField(
model_name='deviceinfo',
name='point_x',
field=models.FloatField(blank=True, null=True, verbose_name='POINT_XLU'),
),
migrations.AddField(
model_name='deviceinfo',
name='point_y',
field=models.FloatField(blank=True, null=True, verbose_name='POINT_YLU'),
),
migrations.AddField(
model_name='deviceinfo',
name='weather_device_id',
field=models.CharField(blank=True, max_length=100, null=True, verbose_name='气象台ID'),
),
]