summaryrefslogtreecommitdiff
path: root/bak/unused_apps/jrnl/migrations/0052_entry_new_field_notes.py
blob: 3ec3167b331e86fd40ef0792721e475f194c496e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Generated by Django 3.1 on 2020-10-27 21:04

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('posts', '0011_remove_post_jrnl'),
        ('jrnl', '0051_auto_20201027_2102'),
    ]

    operations = [
        migrations.AddField(
            model_name='entry',
            name='new_field_notes',
            field=models.ManyToManyField(blank=True, to='posts.Post'),
        ),
    ]