diff options
author | luxagraf <sng@luxagraf.net> | 2019-02-08 13:47:02 -0600 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2019-02-08 13:47:02 -0600 |
commit | ee62ce525c5c5c1b3abd25673598360f2ccd79cc (patch) | |
tree | ead317f6b487fc31219a48a1baf7d17cabcf4ce3 /app/essays/migrations | |
parent | 27aaf92d26eb75157dcfa923a5d63ea63feeb98c (diff) |
changed essays to allow easier building
Diffstat (limited to 'app/essays/migrations')
-rw-r--r-- | app/essays/migrations/0005_auto_20190208_0946.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/app/essays/migrations/0005_auto_20190208_0946.py b/app/essays/migrations/0005_auto_20190208_0946.py new file mode 100644 index 0000000..5b68bb4 --- /dev/null +++ b/app/essays/migrations/0005_auto_20190208_0946.py @@ -0,0 +1,25 @@ +# Generated by Django 2.1.5 on 2019-02-08 09:46 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('essays', '0004_auto_20190205_0830'), + ] + + operations = [ + migrations.DeleteModel( + name='PostType', + ), + migrations.RemoveField( + model_name='essay', + name='post_type', + ), + migrations.AddField( + model_name='essay', + name='preamble', + field=models.TextField(blank=True), + ), + ] |