1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Generated by Django 2.0.1 on 2018-03-03 10:37
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('books', '0005_auto_20171214_2239'),
('jrnl', '0017_entry_field_notes'),
]
operations = [
migrations.AddField(
model_name='entry',
name='books',
field=models.ManyToManyField(blank=True, to='books.Book'),
),
migrations.AlterField(
model_name='entry',
name='field_notes',
field=models.ManyToManyField(blank=True, to='sketches.Sketch'),
),
]
|