blob: bdeb63fc4ec2bbc79b5b8de041e31f109317675a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Generated by Django 3.1 on 2020-11-11 21:48
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('posts', '0012_remove_post_field_notes'),
('jrnl', '0053_auto_20201027_2105'),
]
operations = [
migrations.RemoveField(
model_name='entry',
name='old_field_notes',
),
migrations.AlterField(
model_name='entry',
name='field_notes',
field=models.ManyToManyField(blank=True, limit_choices_to={'post_type': 5}, to='posts.Post'),
),
]
|