diff options
author | luxagraf <sng@luxagraf> | 2021-03-06 09:05:31 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf> | 2021-03-06 09:05:31 -0500 |
commit | 0c5cfeb846944981687a95d171b067799ecc8619 (patch) | |
tree | 70f32634da523cc376b72e74d7662430749384a4 /app/lttr | |
parent | 28fe7b7ee7abc40de4e4a651c3f3b7b10d0e7db0 (diff) |
lttr: added an intro to the newsletter model for better signup messages
Diffstat (limited to 'app/lttr')
-rw-r--r-- | app/lttr/migrations/0014_newsletter_intro.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/app/lttr/migrations/0014_newsletter_intro.py b/app/lttr/migrations/0014_newsletter_intro.py new file mode 100644 index 0000000..630fd54 --- /dev/null +++ b/app/lttr/migrations/0014_newsletter_intro.py @@ -0,0 +1,18 @@ +# Generated by Django 3.1 on 2021-03-05 21:20 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('lttr', '0013_auto_20201110_1730'), + ] + + operations = [ + migrations.AddField( + model_name='newsletter', + name='intro', + field=models.TextField(blank=True, null=True), + ), + ] |