Cloud-CV/EvalAI

View on GitHub
apps/challenges/migrations/0097_challengephase_disable_logs.py

Summary

Maintainability
A
2 hrs
Test Coverage
# Generated by Django 2.2.20 on 2023-07-11 07:31

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('challenges', '0096_challenge_meta_order_by_title'),
    ]

    operations = [
        migrations.AddField(
            model_name='challengephase',
            name='disable_logs',
            field=models.BooleanField(default=False),
        ),
    ]