21 lines
469 B
Python
21 lines
469 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.10.3 on 2017-01-26 19:09
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('contest', '0012_auto_20170126_1852'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='entrycategory',
|
||
|
name='name',
|
||
|
field=models.CharField(max_length=64, unique=True),
|
||
|
),
|
||
|
]
|