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

Record a unique request ID with each ObjectChange

This commit is contained in:
Jeremy Stretch
2018-06-19 15:45:15 -04:00
parent 23f91274d6
commit a8b11e45c1
6 changed files with 20 additions and 8 deletions

View File

@ -681,6 +681,9 @@ class ObjectChange(models.Model):
max_length=150,
editable=False
)
request_id = models.UUIDField(
editable=False
)
action = models.PositiveSmallIntegerField(
choices=OBJECTCHANGE_ACTION_CHOICES
)