Removes --fake-initial from awx-manage migrate.

The --fake-initial option is no longer needed and can cause
application with an initial migration to fail as was seen
in the network_ui application.
This commit is contained in:
Ben Thomasson
2018-04-02 15:34:39 -04:00
parent 3f66379f9d
commit 43601be8a7
2 changed files with 2 additions and 2 deletions

View File

@@ -234,7 +234,7 @@ migrate:
if [ "$(VENV_BASE)" ]; then \
. $(VENV_BASE)/awx/bin/activate; \
fi; \
$(MANAGEMENT_COMMAND) migrate --noinput --fake-initial
$(MANAGEMENT_COMMAND) migrate --noinput
# Run after making changes to the models to create a new migration.
dbchange: