Ticket #32805: 0018_auto_20210601_0946.py

File 0018_auto_20210601_0946.py, 400 bytes (added by Matthew Cornell, 3 years ago)
Line 
1# Generated by Django 3.1.7 on 2021-06-01 13:46
2
3from django.db import migrations, models
4
5
6class Migration(migrations.Migration):
7
8 dependencies = [
9 ('forecast_app', '0017_forecast_issued_at'),
10 ]
11
12 operations = [
13 migrations.AlterField(
14 model_name='forecast',
15 name='issued_at',
16 field=models.DateTimeField(db_index=True),
17 ),
18 ]
Back to Top