blob: c607ca7bd86a236457b5cb9a78acf0594e8366ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# -*- coding: utf-8 -*-
# Generated by Django 1.10.3 on 2016-11-02 09:31
from __future__ import unicode_literals
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('photos', '0016_auto_20161022_1411'),
('jrnl', '0012_auto_20161102_0930'),
]
operations = [
migrations.AddField(
model_name='entry',
name='featured_image',
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='photos.LuxImage'),
),
]
|