summaryrefslogtreecommitdiff
path: root/app/posts/migrations/0030_post_template_name.py
blob: 9d52571bf48484d7294a01aec1e6d5a8a173c955 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Generated by Django 4.2.7 on 2024-03-10 09:56

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('posts', '0029_remove_post_short_title_alter_post_post_type'),
    ]

    operations = [
        migrations.AddField(
            model_name='post',
            name='template_name',
            field=models.IntegerField(choices=[(0, 'Default'), (1, 'Large Top Image')], default=0),
        ),
    ]