mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
9c967ee3ea
* Initial work on #5913 * Provide per-line diff highlighting * BulkDeteView should delete objects individually to secure a pre-change snapshot * Add changelog tests for bulk operations
29 lines
771 B
Python
29 lines
771 B
Python
# Generated by Django 3.2b1 on 2021-03-03 20:30
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('extras', '0054_standardize_models'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RenameField(
|
|
model_name='objectchange',
|
|
old_name='object_data',
|
|
new_name='postchange_data',
|
|
),
|
|
migrations.AlterField(
|
|
model_name='objectchange',
|
|
name='postchange_data',
|
|
field=models.JSONField(blank=True, editable=False, null=True),
|
|
),
|
|
migrations.AddField(
|
|
model_name='objectchange',
|
|
name='prechange_data',
|
|
field=models.JSONField(blank=True, editable=False, null=True),
|
|
),
|
|
]
|