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),
),
]
|