18 lines
431 B
Python
18 lines
431 B
Python
# Generated by Django 4.2.23 on 2026-08-08 13:02
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('contest', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddIndex(
|
|
model_name='realtimematch',
|
|
index=models.Index(fields=['contest', 'status', 'player_one_rating', 'created_at'], name='matchmaking_lookup_idx'),
|
|
),
|
|
]
|