1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# -*- coding: utf-8 -*-
# Generated by Django 1.9.7 on 2016-07-15 07:03
from __future__ import unicode_literals
from django.db import migrations, models
import jrnl.models
class Migration(migrations.Migration):
dependencies = [
('photos', '0010_auto_20160517_0906'),
('jrnl', '0005_auto_20160514_2151'),
]
operations = [
migrations.AddField(
model_name='homepagecurrator',
name='images',
field=models.ManyToManyField(to='photos.LuxImage'),
),
migrations.AlterField(
model_name='entry',
name='image',
field=models.FileField(blank=True, help_text='should be 205px high by 364px wide', null=True, upload_to=jrnl.models.get_upload_path),
),
migrations.AlterField(
model_name='entry',
name='template_name',
field=models.IntegerField(choices=[(0, 'single'), (1, 'double'), (2, 'single-dark'), (3, 'double-dark'), (4, 'single-black'), (5, 'double-black')], default=0),
),
migrations.AlterField(
model_name='postimage',
name='image',
field=models.ImageField(upload_to='/home/lxf/Sites/luxagraf/site/media/images/2016'),
),
]
|