forked from openedx/openedx-learning
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
2 changed files
with
40 additions
and
4 deletions.
There are no files selected for viewing
35 changes: 35 additions & 0 deletions
35
openedx_tagging/core/tagging/migrations/0004_auto_20230723_2001.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Generated by Django 3.2.19 on 2023-07-24 01:01 | ||
|
||
from django.db import migrations, models | ||
import openedx_learning.lib.fields | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('oel_tagging', '0003_auto_20230721_1238'), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveIndex( | ||
model_name='tag', | ||
name='oel_tagging_taxonom_89e779_idx', | ||
), | ||
migrations.RemoveIndex( | ||
model_name='tag', | ||
name='oel_tagging_taxonom_44e355_idx', | ||
), | ||
migrations.AlterField( | ||
model_name='objecttag', | ||
name='object_id', | ||
field=openedx_learning.lib.fields.MultiCollationCharField(db_collations={'mysql': 'utf8mb4_unicode_ci', 'sqlite': 'NOCASE'}, db_index=True, editable=False, help_text='Identifier for the object being tagged', max_length=255), | ||
), | ||
migrations.AlterUniqueTogether( | ||
name='tag', | ||
unique_together={('taxonomy', 'value'), ('taxonomy', 'external_id')}, | ||
), | ||
migrations.AddIndex( | ||
model_name='objecttag', | ||
index=models.Index(fields=['taxonomy', 'object_id'], name='oel_tagging_taxonom_aa24e6_idx'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters