blob: b90e86bda28efed39914494582a63490db723b5d (
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-03-03 15:25
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('fieldnotes', '0002_auto_20190303_1222'),
('jrnl', '0032_entry_subtitle'),
]
operations = [
migrations.AddField(
model_name='entry',
name='field_notes_two',
field=models.ManyToManyField(blank=True, to='fieldnotes.FieldNote'),
),
]
|