factory/apps/enm/migrations/0010_auto_20230717_1532.py

24 lines
740 B
Python

# Generated by Django 3.2.12 on 2023-07-17 07:32
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('enm', '0009_auto_20230717_1403'),
]
operations = [
migrations.AlterField(
model_name='enstat',
name='type',
field=models.CharField(default='hour', help_text='year_s/month_s/day_s/sflog/hour_s', max_length=50, verbose_name='统计维度'),
),
migrations.AlterField(
model_name='mpointstat',
name='type',
field=models.CharField(default='hour', help_text='year/month/day/year_s/month_s/day_s/sflog/hour_s/hour', max_length=50, verbose_name='统计维度'),
),
]