Skip to content

Commit

Permalink
OpenConceptLab/ocl_issues#845 | added migration for indexes
Browse files Browse the repository at this point in the history
  • Loading branch information
snyaggarwal committed Aug 4, 2021
1 parent cdb1fa4 commit 3c846a5
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions core/concepts/migrations/0018_auto_20210804_0957.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Generated by Django 3.1.9 on 2021-08-04 09:57

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('concepts', '0017_auto_20210720_1000'),
]

operations = [
migrations.AddIndex(
model_name='concept',
index=models.Index(fields=['is_active', 'retired', 'is_latest_version', 'public_access'], name='concepts_is_acti_7190c6_idx'),
),
migrations.AddIndex(
model_name='localizedtext',
index=models.Index(fields=['created_at'], name='localized_t_created_4a5dc0_idx'),
),
]

0 comments on commit 3c846a5

Please sign in to comment.