Cloud-CV/EvalAI

View on GitHub
apps/challenges/migrations/0038_challenge_remote_evaluation.py

Summary

Maintainability
A
2 hrs
Test Coverage
# -*- coding: utf-8 -*-
# Generated by Django 1.11.15 on 2018-11-04 23:33
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [("challenges", "0037_add_field_to_store_forum_url")]

    operations = [
        migrations.AddField(
            model_name="challenge",
            name="remote_evaluation",
            field=models.BooleanField(
                db_index=True, default=False, verbose_name="Remote Evaluation"
            ),
        )
    ]