blob: 6c1314756d256f41ee956c416e05164e1c710358 (
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.2 on 2019-01-10 17:23
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('forum', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='category',
name='description',
field=models.CharField(default='', max_length=350),
preserve_default=False,
),
]
|