Files
awx/awx/main/management/commands/check_migrations.py
Jeff Bradberry 686d750ad9 Make the check_migrations command a direct alias of makemigration
It already more or less was, but it previously did some machinations
around copying and modifying the database settings.  These on-the-fly
changes to the database connection no longer work after the
rearrangement of settings files, so let's just get rid of it.
2021-05-03 11:01:52 -04:00

6 lines
127 B
Python

from django.core.management.commands.makemigrations import Command as MakeMigrations
class Command(MakeMigrations):
pass