mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Closes #4840: Enable change logging for config contexts
This commit is contained in:
23
netbox/extras/migrations/0045_configcontext_changelog.py
Normal file
23
netbox/extras/migrations/0045_configcontext_changelog.py
Normal file
@@ -0,0 +1,23 @@
|
||||
# Generated by Django 3.0.6 on 2020-07-09 20:54
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('extras', '0044_jobresult'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='configcontext',
|
||||
name='created',
|
||||
field=models.DateField(auto_now_add=True, null=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='configcontext',
|
||||
name='last_updated',
|
||||
field=models.DateTimeField(auto_now=True, null=True),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user