summaryrefslogtreecommitdiff
path: root/app/essays/migrations/0010_essay_field_notes.py
blob: ca15b38c185d3904b75a1bb83eecc75858d2f6f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Generated by Django 2.1.7 on 2019-07-04 09:03

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('fieldnotes', '0002_auto_20190303_1222'),
        ('essays', '0009_merge_20190414_1500'),
    ]

    operations = [
        migrations.AddField(
            model_name='essay',
            name='field_notes',
            field=models.ManyToManyField(blank=True, to='fieldnotes.FieldNote'),
        ),
    ]