Cloud-CV/EvalAI

View on GitHub
apps/challenges/migrations/0096_challenge_meta_order_by_title.py

Summary

Maintainability
A
0 mins
Test Coverage
# Generated by Django 2.2.20 on 2023-07-04 20:53

from django.db import migrations


class Migration(migrations.Migration):

    dependencies = [
        ('challenges', '0095_challenge_queue_aws_region'),
    ]

    operations = [
        migrations.AlterModelOptions(
            name='challenge',
            options={'ordering': ('title',)},
        ),
    ]