summaryrefslogtreecommitdiff
path: root/app/posts/migrations/0014_auto_20201113_1444.py
blob: 2ac1df07aec4abff9cac44d9af854e8786b5d49a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Generated by Django 3.1 on 2020-11-13 14:44

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('posts', '0013_auto_20201111_2231'),
    ]

    operations = [
        migrations.AlterField(
            model_name='post',
            name='template_name',
            field=models.IntegerField(choices=[(0, 'single'), (1, 'double'), (2, 'single-dark'), (3, 'double-dark'), (4, 'single-black'), (5, 'double-black')], default=0),
        ),
    ]