summaryrefslogtreecommitdiff
path: root/app/posts/migrations/0019_auto_20210323_2155.py
blob: 0f3af4420947b20d825698193e54932189d0c11d (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 2021-03-23 21:55

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('posts', '0018_auto_20210128_1708'),
    ]

    operations = [
        migrations.AddField(
            model_name='post',
            name='issue',
            field=models.PositiveIntegerField(null=True),
        ),
        migrations.AlterField(
            model_name='post',
            name='post_type',
            field=models.IntegerField(choices=[(0, 'range'), (1, 'review'), (2, 'essay'), (3, 'src'), (4, 'jrnl'), (5, 'field note'), (6, 'guide'), (7, 'friends')], default=4),
        ),
    ]