summaryrefslogtreecommitdiff
path: root/app/posts/migrations/0008_post_topics.py
blob: cd867d8c32d004fd3e3a1c52aaf4332613bb8e1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Generated by Django 2.2.6 on 2019-10-07 09:49

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('taxonomy', '0002_auto_20191007_0913'),
        ('posts', '0007_auto_20191007_0949'),
    ]

    operations = [
        migrations.AddField(
            model_name='post',
            name='topics',
            field=models.ManyToManyField(blank=True, to='taxonomy.Category'),
        ),
    ]