24 lines
668 B
Python
24 lines
668 B
Python
# Generated by Django 2.2.4 on 2020-06-01 08:46
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('mosquito', '0013_deviceinfo_device_name'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='devicepoststatistic',
|
|
name='create_time',
|
|
field=models.DateTimeField(auto_now_add=True, null=True, verbose_name='创建时间'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='devicepoststatistic',
|
|
name='update_time',
|
|
field=models.DateTimeField(auto_now=True, null=True, verbose_name='更新时间'),
|
|
),
|
|
]
|