-
-
Notifications
You must be signed in to change notification settings - Fork 461
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added data model index in analyzer report (#2597)
- Loading branch information
1 parent
155969f
commit 5b5c91d
Showing
2 changed files
with
23 additions
and
1 deletion.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
api_app/analyzers_manager/migrations/0140_analyzerreport_analyzers_m_data_mo_a1952b_idx.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,20 @@ | ||
# Generated by Django 4.2.16 on 2024-12-12 11:45 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("analyzers_manager", "0139_alter_analyzerconfig_mapping_data_model"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddIndex( | ||
model_name="analyzerreport", | ||
index=models.Index( | ||
fields=["data_model_content_type", "data_model_object_id"], | ||
name="analyzers_m_data_mo_a1952b_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