X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/9d0a4f124c6b0dca121206c8b4f12826c510906a..beac9fec3de5fa66dfc80ed119c4bdd812e9e2c2:/src/alerts/migrations/0002_alert_comment.py diff --git a/src/alerts/migrations/0002_alert_comment.py b/src/alerts/migrations/0002_alert_comment.py new file mode 100644 index 00000000..d3d9c5b1 --- /dev/null +++ b/src/alerts/migrations/0002_alert_comment.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.12 on 2022-05-23 11:58 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('alerts', '0001_initial'), + ] + + operations = [ + migrations.AddField( + model_name='alert', + name='comment', + field=models.TextField(blank=True), + ), + ]