Skip to content

Commit

Permalink
added migration
Browse files Browse the repository at this point in the history
  • Loading branch information
wolph committed Dec 12, 2021
1 parent 290786e commit 5929eaa
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions post_office/migrations/0012_add_example_context.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 3.2.10 on 2021-12-12 02:17

from django.db import migrations, models
import jsonfield.fields


class Migration(migrations.Migration):

dependencies = [
('post_office', '0011_models_help_text'),
]

operations = [
migrations.AddField(
model_name='emailtemplate',
name='example_context',
field=jsonfield.fields.JSONField(blank=True, null=True, verbose_name='Context'),
),
]

0 comments on commit 5929eaa

Please sign in to comment.