diff options
author | luxagraf <sng@luxagraf.net> | 2019-09-18 21:14:38 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2019-09-18 21:14:38 -0400 |
commit | 5bc22c064fbc51987007d85fbc8296a998cf6e84 (patch) | |
tree | 7d961ff86c478171ffee14168e9ae3f9d09f1ca5 /app/posts/migrations/0004_auto_20190918_1241.py | |
parent | 9e7aadbcf9bab0ecfcd4afc96f6a09f9fe11a197 (diff) |
added posts, consolidated essays into posts
Diffstat (limited to 'app/posts/migrations/0004_auto_20190918_1241.py')
-rw-r--r-- | app/posts/migrations/0004_auto_20190918_1241.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/app/posts/migrations/0004_auto_20190918_1241.py b/app/posts/migrations/0004_auto_20190918_1241.py new file mode 100644 index 0000000..da829ad --- /dev/null +++ b/app/posts/migrations/0004_auto_20190918_1241.py @@ -0,0 +1,19 @@ +# Generated by Django 2.1.7 on 2019-09-18 12:41 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('posts', '0003_auto_20190918_1230'), + ] + + operations = [ + migrations.AlterField( + model_name='post', + name='featured_image', + field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='photos.LuxImage'), + ), + ] |