Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
snyaggarwal committed Dec 21, 2023
1 parent 3dfca6d commit 6580a15
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions core/mappings/migrations/0049_mapping_mappings_sort_weight_next.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Generated by Django 4.2.4 on 2023-12-21 04:28

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('mappings', '0048_auto_20230912_0327'),
]

operations = [
migrations.AddIndex(
model_name='mapping',
index=models.Index(condition=models.Q(('id', models.F('versioned_object_id')), ('retired', False), ('sort_weight__isnull', False)), fields=['from_concept_id', 'sort_weight', 'parent_id', 'map_type'], name='mappings_sort_weight_next'),
),
]

0 comments on commit 6580a15

Please sign in to comment.