mirror of
https://github.com/netbox-community/netbox.git
synced 2026-03-29 05:42:09 +02:00
8 lines
226 B
Python
8 lines
226 B
Python
# noinspection PyUnresolvedReferences
|
|
from django.core.management.commands.migrate import Command
|
|
from django.db import models
|
|
|
|
from utilities.migration import custom_deconstruct
|
|
|
|
models.Field.deconstruct = custom_deconstruct
|