mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
* Closes #14436: Add PostgreSQL indexes for all GenericForeignKeys * Add note about GFK indexes to developer docs
18 lines
439 B
Python
18 lines
439 B
Python
# Generated by Django 4.2.7 on 2023-12-07 16:09
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('tenancy', '0012_contactassignment_custom_fields'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddIndex(
|
|
model_name='contactassignment',
|
|
index=models.Index(fields=['content_type', 'object_id'], name='tenancy_con_content_693ff4_idx'),
|
|
),
|
|
]
|