summaryrefslogtreecommitdiff
path: root/bak/unused_apps/fieldnotes_/migrations/0002_auto_20190303_1222.py
blob: c0e352eaf1b05210d22acfb115a6072de6c029b4 (plain)
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
# Generated by Django 2.1.7 on 2019-03-03 12:22

from django.db import migrations, models
import django.db.models.deletion


class Migration(migrations.Migration):

    dependencies = [
        ('photos', '0018_auto_20161130_1218'),
        ('fieldnotes', '0001_initial'),
    ]

    operations = [
        migrations.AddField(
            model_name='fieldnote',
            name='featured_image',
            field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='photos.LuxImage'),
        ),
        migrations.AddField(
            model_name='fieldnote',
            name='note_type',
            field=models.IntegerField(choices=[(0, 'Note'), (1, 'Photo')], default=0),
        ),
    ]