22 lines
518 B
Python
22 lines
518 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.10.3 on 2017-01-18 13:17
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('contest', '0003_auto_20170118_1208'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='contest',
|
|
name='shortName',
|
|
field=models.CharField(default='test', max_length=20, unique=True),
|
|
preserve_default=False,
|
|
),
|
|
]
|