diff --git a/docs/models/tenancy/contact.md b/docs/models/tenancy/contact.md index 412e9b239..f277ab499 100644 --- a/docs/models/tenancy/contact.md +++ b/docs/models/tenancy/contact.md @@ -8,6 +8,8 @@ A contact represents an individual or group that has been associated with an obj The [contact groups](./contactgroup.md) to which this contact is assigned (if any). +!!! info "This field was renamed from `group` to `groups` in NetBox v4.3, and now supports the assignment of a contact to more than one group." + ### Name The name of the contact. This may be an individual or a team/department. (This is the only required contact detail; all others are optional.) diff --git a/netbox/tenancy/migrations/0018_contact_groups.py b/netbox/tenancy/migrations/0018_contact_groups.py index 2fcbc48de..557961a41 100644 --- a/netbox/tenancy/migrations/0018_contact_groups.py +++ b/netbox/tenancy/migrations/0018_contact_groups.py @@ -10,7 +10,6 @@ def migrate_contact_groups(apps, schema_editor): qs = Contacts.objects.filter(group__isnull=False) for contact in qs: contact.groups.add(contact.group) - contact.save() class Migration(migrations.Migration):