Cloud-CV/EvalAI

View on GitHub
apps/challenges/migrations/0032_adds_featured_field_in_challenge.py

Summary

Maintainability
A
2 hrs
Test Coverage
# -*- coding: utf-8 -*-
# Generated by Django 1.10.2 on 2017-09-29 07:09
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ("challenges", "0031_add_db_index_to_challenge_related_models")
    ]

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