diff options
author | luxagraf <sng@luxagraf.net> | 2019-02-22 20:44:24 -0600 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2019-02-22 20:44:24 -0600 |
commit | 5813a02145c8f95c04a2fedfd9555b402d443e6b (patch) | |
tree | c41dfa15aa4d4e50b928c514526216f84c9921cc /app/books/migrations | |
parent | 24e0c4ee694c694db2a6d038e5b509aed8e66b13 (diff) |
added essays and books to sitemap, moved books to read
Diffstat (limited to 'app/books/migrations')
-rw-r--r-- | app/books/migrations/0008_auto_20190222_2140.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/app/books/migrations/0008_auto_20190222_2140.py b/app/books/migrations/0008_auto_20190222_2140.py new file mode 100644 index 0000000..eb253c2 --- /dev/null +++ b/app/books/migrations/0008_auto_20190222_2140.py @@ -0,0 +1,19 @@ +# Generated by Django 2.1.5 on 2019-02-22 21:40 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('books', '0007_auto_20190131_2351'), + ] + + operations = [ + migrations.AlterField( + model_name='book', + name='body_markdown', + field=models.TextField(blank=True, default=''), + preserve_default=False, + ), + ] |