Cloud-CV/EvalAI

View on GitHub
apps/challenges/migrations/0045_Add_leaderboard_description_field_in_challenge.py

Summary

Maintainability
A
2 hrs
Test Coverage
# -*- coding: utf-8 -*-
# Generated by Django 1.11.15 on 2019-01-30 16:05
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ("challenges", "0044_add_field_to_allow_email_ids_in_challenge_phase")
    ]

    operations = [
        migrations.AddField(
            model_name="challenge",
            name="leaderboard_description",
            field=models.TextField(blank=True, null=True),
        )
    ]