summaryrefslogtreecommitdiff
path: root/app/jrnl/migrations/0015_entry_has_video.py
blob: b6433426914752c79c73cf0c40428e3e7a636ae8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- 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', '0014_homepagecurrator'),
    ]

    operations = [
        migrations.AddField(
            model_name='entry',
            name='has_video',
            field=models.BooleanField(blank=True, default=False),
        ),
    ]