summaryrefslogtreecommitdiff
path: root/app/posts/migrations/0027_remove_post_template_name_post_post_topic.py
blob: 43dda71d6648b94e4ac7fe89ff1b80440af56e03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Generated by Django 4.2.7 on 2024-02-25 11:08

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('posts', '0026_guide_related'),
    ]

    operations = [
        migrations.RemoveField(
            model_name='post',
            name='template_name',
        ),
        migrations.AddField(
            model_name='post',
            name='post_topic',
            field=models.IntegerField(choices=[(0, 'spirit'), (1, 'craft'), (2, 'tools')], default=0),
        ),
    ]