1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Closes #11494: Enable filtering objects by create/update request IDs

This commit is contained in:
jeremystretch
2023-03-16 16:29:43 -04:00
parent 5b81986bb3
commit 6e4c4c4342
5 changed files with 112 additions and 3 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 4.1.7 on 2023-03-16 20:06
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('extras', '0089_customfield_is_cloneable'),
]
operations = [
migrations.AlterField(
model_name='objectchange',
name='request_id',
field=models.UUIDField(db_index=True, editable=False),
),
]