Reorganize management commands

This commit is contained in:
jeremystretch 2023-03-24 21:11:10 -04:00
parent f7a2eb8aef
commit 5c0ce96b6f
7 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ from django.core.management.base import CommandError
from django.core.management.commands.makemigrations import Command as _Command
from django.db import models
from . import custom_deconstruct
from utilities.migration import custom_deconstruct
models.Field.deconstruct = custom_deconstruct

View File

@ -2,6 +2,6 @@
from django.core.management.commands.migrate import Command
from django.db import models
from . import custom_deconstruct
from utilities.migration import custom_deconstruct
models.Field.deconstruct = custom_deconstruct