Skip to content

Commit ec8a5af

Browse files
committed
Missing migrations from #218
1 parent 09f1dc8 commit ec8a5af

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Generated by Django 2.2.7 on 2024-10-23 09:50
2+
3+
from django.db import migrations, models
4+
import django.utils.timezone
5+
6+
7+
class Migration(migrations.Migration):
8+
9+
dependencies = [
10+
('tigapublic', '0004_auto_20240315_1341'),
11+
]
12+
13+
operations = [
14+
migrations.AlterField(
15+
model_name='stormdrain',
16+
name='date',
17+
field=models.DateTimeField(blank=True, default=django.utils.timezone.now, null=True),
18+
),
19+
migrations.AlterField(
20+
model_name='stormdrainuserversions',
21+
name='published_date',
22+
field=models.DateTimeField(default=django.utils.timezone.now),
23+
),
24+
]

0 commit comments

Comments
 (0)