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

Closes #7812: Enable change logging for image attachments

This commit is contained in:
jeremystretch
2021-11-17 11:49:11 -05:00
parent b7b5a5788f
commit 424ac29131
4 changed files with 29 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('extras', '0064_configrevision'),
]
operations = [
migrations.AddField(
model_name='imageattachment',
name='last_updated',
field=models.DateTimeField(auto_now=True, null=True),
),
]