Cloud-CV/EvalAI

View on GitHub
apps/challenges/migrations/0103_challenge_worker_image_url_alter.py

Summary

Maintainability
A
0 mins
Test Coverage
# Generated by Django 2.2.20 on 2023-08-12 15:45

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('challenges', '0102_challenge_ec2_storage'),
    ]

    operations = [
        migrations.AlterField(
            model_name='challenge',
            name='domain',
            field=models.CharField(blank=True, choices=[('CV', 'Computer Vision'), ('NLP', 'Natural Language Processing'), ('RL', 'Reinforcement Learning'), ('MM', 'Multimodal'), ('AUD', 'Audio'), ('TAB', 'Tabular')], max_length=50, null=True),
        ),
        migrations.AlterField(
            model_name='challenge',
            name='worker_image_url',
            field=models.CharField(blank=True, default=None, max_length=200, null=True),
        ),
    ]