mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
a3b8262ab0
* added index on cachevalue #14966 * Update netbox/extras/models/search.py Co-authored-by: Jeremy Stretch <jstretch@netboxlabs.com> * fixed migration --------- Co-authored-by: Jeremy Stretch <jstretch@netboxlabs.com>
18 lines
425 B
Python
18 lines
425 B
Python
# Generated by Django 4.2.9 on 2024-02-20 17:15
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('extras', '0106_bookmark_user_cascade_deletion'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddIndex(
|
|
model_name='cachedvalue',
|
|
index=models.Index(fields=['object_type', 'object_id'], name='extras_cachedvalue_object'),
|
|
),
|
|
]
|