From b033db77e04859c2305d2a92dc96fcb62d29bb55 Mon Sep 17 00:00:00 2001 From: Bharath Chadarajupalli Date: Tue, 23 Jan 2024 13:03:44 -0800 Subject: [PATCH] Apply migrations without fake --- .heroku/release.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.heroku/release.sh b/.heroku/release.sh index 178efd956..635b78e99 100755 --- a/.heroku/release.sh +++ b/.heroku/release.sh @@ -4,10 +4,10 @@ set -e if [ -n "$CTC_URL" ] ; then # Run migration surrounded by CTC start/stop # python .heroku/check_change_traffic_control.py - python manage.py migrate account --fake - python manage.py showmigrations account - python manage.py migrate account 0002 - python manage.py migrate account + # python manage.py migrate account --fake + # python manage.py showmigrations account + # python manage.py migrate account 0002 + # python manage.py migrate account python manage.py migrate --noinput else # Simply run the migration