diff options
author | luxagraf <sng@luxagraf.net> | 2019-04-14 13:57:23 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2019-04-14 13:57:23 -0500 |
commit | 38122e0102e7a03c47575342e5edb75c15912fef (patch) | |
tree | 4544f1507159cb6770db3f25f2b227859bfd5151 /app/essays/migrations | |
parent | 471498bafcfa2e7d2d00e0672b83c7ad41edb557 (diff) |
added html to preamble
Diffstat (limited to 'app/essays/migrations')
-rw-r--r-- | app/essays/migrations/0007_auto_20190414_1455.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/app/essays/migrations/0007_auto_20190414_1455.py b/app/essays/migrations/0007_auto_20190414_1455.py new file mode 100644 index 0000000..a5242cb --- /dev/null +++ b/app/essays/migrations/0007_auto_20190414_1455.py @@ -0,0 +1,18 @@ +# Generated by Django 2.1.7 on 2019-04-14 14:55 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('essays', '0006_auto_20190303_1625'), + ] + + operations = [ + migrations.AddField( + model_name='essay', + name='preamble_html', + field=models.TextField(blank=True), + ), + ] |