Cloud-CV/EvalAI

View on GitHub
apps/challenges/migrations/0022_challengephase_dataset_split.py

Summary

Maintainability
A
0 mins
Test Coverage
# -*- coding: utf-8 -*-
# Generated by Django 1.10.2 on 2017-02-07 17:47
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [("challenges", "0021_remove_challengephase_dataset_split")]

    operations = [
        migrations.AddField(
            model_name="challengephase",
            name="dataset_split",
            field=models.ManyToManyField(
                blank=True,
                through="challenges.ChallengePhaseSplit",
                to="challenges.DatasetSplit",
            ),
        )
    ]