diff options
author | luxagraf <sng@luxagraf.net> | 2020-02-05 16:18:53 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2020-02-05 16:18:53 -0500 |
commit | 33209aed7c3e858d95576bdcfefa17c3f5d7597b (patch) | |
tree | 08e6877551da29c0b645208c9e9e806c4624cd42 /app/lttr/migrations | |
parent | 932a69ba325fab012630313edcfe697e93d340d7 (diff) |
migrated newsletter templates and updated mailing model
Diffstat (limited to 'app/lttr/migrations')
-rw-r--r-- | app/lttr/migrations/0005_auto_20200205_1606.py | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/app/lttr/migrations/0005_auto_20200205_1606.py b/app/lttr/migrations/0005_auto_20200205_1606.py new file mode 100644 index 0000000..0be644e --- /dev/null +++ b/app/lttr/migrations/0005_auto_20200205_1606.py @@ -0,0 +1,31 @@ +# Generated by Django 2.1.2 on 2020-02-05 16:06 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('photos', '0019_auto_20190704_0903'), + ('lttr', '0004_auto_20190212_1529'), + ] + + operations = [ + migrations.AddField( + model_name='newslettermailing', + name='body_html', + field=models.TextField(blank=True), + ), + migrations.AddField( + model_name='newslettermailing', + name='body_markdown', + field=models.TextField(default='tk'), + preserve_default=False, + ), + migrations.AddField( + model_name='newslettermailing', + name='featured_image', + field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='photos.LuxImage'), + ), + ] |