diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/jrnl/models.py | 4 | ||||
-rw-r--r-- | app/photos/migrations/0010_auto_20160517_0906.py | 30 |
2 files changed, 32 insertions, 2 deletions
diff --git a/app/jrnl/models.py b/app/jrnl/models.py index 08d0721..21b0c8c 100644 --- a/app/jrnl/models.py +++ b/app/jrnl/models.py @@ -107,8 +107,8 @@ class Entry(models.Model): (1, 'double'), (2, 'single-dark'), (3, 'double-dark'), - (4, 'bigimg'), - (5, 'bigimg-dark'), + (4, 'single-black'), + (5, 'double-black'), ) template_name = models.IntegerField(choices=TEMPLATES, default=0) diff --git a/app/photos/migrations/0010_auto_20160517_0906.py b/app/photos/migrations/0010_auto_20160517_0906.py new file mode 100644 index 0000000..0adf4ff --- /dev/null +++ b/app/photos/migrations/0010_auto_20160517_0906.py @@ -0,0 +1,30 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9 on 2016-05-17 09:06 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('photos', '0009_auto_20160320_0907'), + ] + + operations = [ + migrations.AddField( + model_name='luximage', + name='facebook_link', + field=models.CharField(blank=True, max_length=300, null=True), + ), + migrations.AddField( + model_name='luximage', + name='twitter_link', + field=models.CharField(blank=True, max_length=300, null=True), + ), + migrations.AlterField( + model_name='luximage', + name='sizes', + field=models.ManyToManyField(blank=True, to='photos.LuxImageSize'), + ), + ] |