Meta errors in alerts.
[redakcja.git] / src / alerts / migrations / 0002_alert_comment.py
1 # Generated by Django 3.2.12 on 2022-05-23 11:58
2
3 from django.db import migrations, models
4
5
6 class Migration(migrations.Migration):
7
8     dependencies = [
9         ('alerts', '0001_initial'),
10     ]
11
12     operations = [
13         migrations.AddField(
14             model_name='alert',
15             name='comment',
16             field=models.TextField(blank=True),
17         ),
18     ]