You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cqtu/contest/migrations/0010_shadowcall.py

26 lines
867 B

# -*- coding: utf-8 -*-
# Generated by Django 1.10.3 on 2017-01-24 23:28
from __future__ import unicode_literals
import contest.validators
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('contest', '0009_auto_20170123_0139'),
]
operations = [
migrations.CreateModel(
name='ShadowCall',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('username', models.CharField(db_index=True, max_length=20, unique=True, validators=[contest.validators.CallUsernameValidator()])),
('ref', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='contest.Reference')),
],
),
]