blob: 42b1bd09ccccb1635f1467d2ab0e0e0405851081 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# -*- coding: utf-8 -*-
# Generated by Django 1.11.8 on 2018-01-18 23:31
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('weblog', '0004_auto_20180119_0156'),
]
operations = [
migrations.AlterField(
model_name='category',
name='name',
field=models.CharField(max_length=250, unique=True, verbose_name='Name'),
),
]
|