blob: 99de3fe42d5312993e07f39bf95f8712c2403323 (
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 22:31
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('posts', '0012_remove_post_field_notes'),
]
operations = [
migrations.AddField(
model_name='post',
name='field_notes',
field=models.ManyToManyField(blank=True, limit_choices_to={'post_type': 5}, to='posts.Post'),
),
migrations.AlterField(
model_name='post',
name='disclaimer',
field=models.BooleanField(blank=True, default=False),
),
]
|