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

Closes #4711: Rename Webhook.obj_type to content_types

This commit is contained in:
Jeremy Stretch
2020-12-02 14:49:07 -05:00
parent f5133c6737
commit ba00d57d37
6 changed files with 31 additions and 10 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 3.1 on 2020-12-02 19:41
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('extras', '0052_customfield_cleanup'),
]
operations = [
migrations.RenameField(
model_name='webhook',
old_name='obj_type',
new_name='content_types',
),
]