mirror of
https://github.com/ansible/awx.git
synced 2026-03-18 17:37:30 -02:30
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.
6 lines
127 B
Python
6 lines
127 B
Python
from django.core.management.commands.makemigrations import Command as MakeMigrations
|
|
|
|
|
|
class Command(MakeMigrations):
|
|
pass
|