blob: a364147e2a062a3846dcb7b2c064d378dc74aa5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Generated by Django 2.1.7 on 2019-09-27 20:31
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('posts', '0005_auto_20190918_1244'),
]
operations = [
migrations.AddField(
model_name='post',
name='short_title',
field=models.CharField(default='blurk', max_length=200),
preserve_default=False,
),
]
|